zoukankan      html  css  js  c++  java
  • java中的抽象类(abstract)

    具体看代码

     1 abstract class student {// 抽象方法放在类中,不能有new创建对象,没意义,必须让子类复写方法,复写后仍未抽象类
     2     abstract void study();// 由void study(){}改的
     3     // 抽象方法一定有抽象类,必须有关键字修饰
     4     // abstract void
     5     // study1();//如果有这个,子类必须复写其方法,如果不复写,在子类前必须加abstract,且必须将此方法放在子类中,前要加abstract
     6 }
     7 
     8 class BaseStudent extends student {
     9     void study() {
    10         System.out.println("base studing");
    11     }
    12 
    13 }
    14 
    15 class AdvStudent extends student {
    16     void study() {
    17         System.out.println("adv studing");
    18     }
    19 }
    20 
    21 public class TestAbstract {
    22 
    23     public static void main(String[] args) {
    24         new BaseStudent().study();
    25     }
    26 
    27 }
    View Code
  • 相关阅读:
    改善深层神经网络
    IO操作 第一篇 学习(转载)
    杂谈:收集的一些博文
    杭电2072
    Java数组常用方法
    JAVA中final修饰符小结
    南阳106
    南阳283
    南阳277
    南阳458
  • 原文地址:https://www.cnblogs.com/sxmcACM/p/3485096.html
Copyright © 2011-2022 走看看