可以吧···如果父类是抽象类,父类有的方法子类必须重写,不是抽象类不重写应该也能继承吧(有点模糊),父类没有的方法,子类里面直接给出也可以啊,当作子类的特有方法
- class DemoA
- {
- void method()
- {
- System.out.println("method run");
- }
- }
- class DemoB extends DemoA
- {
- void show()
- {
- System.out.println("show run");
- }
- }
- class ExtendsDemo
- {
- public static void main(String[] args)
- {
- DemoB b = new DemoB();
- b.show();
- b.method();
- }
- }
复制代码 |