1.Java 中为什么会出现抽象类这个概念呢?
1 package abs; 2 //父类 3 public class Animal { 4 String name; 5 int age; 6 //动物会叫 7 //方法体有用吗 8 public void shout() { 9 System.out.println("不知道怎么叫"); //我们不知道它怎么叫 10 } 11 }
abstract、final、static三大关键字的使用
原文:https://www.cnblogs.com/shansir/p/13810908.html