【每日日报】第二十四天

1 5.8上机练习

 

 当父类定义为final时子类重载该函数会出现报错

1 package FuZi;
2 
3 public class People {
4     void a(){System.out.println("People");}
5 }
复制代码
 1 package FuZi;
 2 
 3 public class Student extends People{
 4     void a(){System.out.println("Student");}
 5     public static void main(String args[]){
 6         People p=new Student();
 7         p.a();
 8     }
 9 
10 }
复制代码

 

 

 

 当新建 People p=new Student();

 

当Student p=new People();

 

 

2 没什么问题

3 明天继续看手册

posted @   我试试这个昵称好使不  阅读(76)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示