首页 > 这道题猜猜答案?
头像
Dream_bug
编辑于 2020-07-08 16:04
+ 关注

这道题猜猜答案?

class person {
   String name = “person”;
   public void shout() {
     System.out.print(name);
   }
}
class student extends person{
   String name = “student”;
   String school = “school”;
}
class Test{
   public static void main(String[] args){
      person p = new student();
      p.shout();
   }
}

全部评论

(0) 回帖
加载中...
话题 回帖

相关热帖

近期热帖

热门推荐