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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© che201311 中级黑马   /  2013-11-22 16:23  /  1103 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  public class Person {  
      
        public Person(int id) {  
            System.out.println("person(" + id + ")");  
        }  
      
        public static void main(String[] args) {  
            Build b = new Build();  
        }  
    }  
      
    class Build {  
        Person p1 = new Person(1);  
      
        public Build() {  
            System.out.println("this is build's block!");  
            Person p2 = new Person(2);  
        }  
      
        Person p3 = new Person(3);  
      
    }  



为什么输出的是这个?
person(1)
person(3)
this is build's block!
person(2)

main方法 第一句是 Build b = new Build();  
应该先执行 Build的无参构造方法啊

1 个回复

倒序浏览
对象在初始化的时候,先默认初始化,然后显示初始化,接着构造代码块初始化,最后构造函数初始化
Build对象显示初始化时,对Person对象p2和p3初始化,调用了Person类的构造函数输出了
person(1)
person(3)
最后调用自己的构造函数输出
this is build's block!
person(2)
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马