A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 高廷平 中级黑马   /  2012-9-28 21:15  /  1506 人查看  /  5 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

public static void main(String[] args)
{
        Student st=new Student();
        System.out.println(st.name+","+st.age+","+st.id);
}


class Person
{
              int age;
              String name;

          Person(int age,String name)
        {
               this.age=age;
               this.name=name;
         }
}

class Student extends Person
{
            int id;
            int age;
           String name;
           Student()
           {
                 this(10);//this掉用本类的相关的构造方法,也必须是第一句
           }
   
       Student(int id)
        {
             super(20,"tom");//必须是第一句,super()调用父类的构造函数
            this.id=id;
}
}


解释下上面程序的执行过程和结果!

评分

参与人数 1技术分 +1 收起 理由
滔哥 + 1 不错

查看全部评分

5 个回复

倒序浏览
很绕的奥!{:soso_e120:}
回复 使用道具 举报
null   0   10

很清晰啊~~~

System.out.println(st.name+","+st.age+","+st.id);
都是Student的变量

评分

参与人数 1技术分 +1 收起 理由
滔哥 + 1 参与有分

查看全部评分

回复 使用道具 举报
一、 程序从main()进入,main()要建立Student对象,需要先调用Studen()构造方法。
二、Studen()构造方法调用Student(10),
三、Student(10)调用super(20,"tom");也就是 Person(i20,"tom");
四、Person(20,"tom")初始化完后,转回Student(10)构造方法,id被赋值为10.
五、Student对象初始化完毕,结果是null、0、10。

评分

参与人数 1技术分 +1 收起 理由
滔哥 + 1

查看全部评分

回复 使用道具 举报
这个回答很到位 {:soso_e142:}
回复 使用道具 举报
了解               
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马