看了《Thinking in java》的第五章,对创建对象的初始化过程有了大概的了解。
先看一个简单的程序。
/**
* Created by xdlichen on 9/8/2015.
*/
class Test12{
Test12(int marker){System.out.println("Window("+marker+")");}
}
class Window{
static Test12 w5=new Test12(5);
}
class House{
static Test12 w4=new Test12(4);
House() {
System.out.println("House()");
w3 = new Test12(33);
}
void f(){System.out.println("f()");}
void p(){System.out.println("p()");}
Test12 w3=new Test12(3);
}
public class staticTest1 {
public static void main(String[] args){
House h=new House();
h.f();
new House();
new Window();
}
}输出:Window(4)Window(3)House()Window(33)f()Window(3)House()Window(33)Window(5)在上面的代码中,class Window 和class House都有静态对象成员。
下面说具体初始化过程:
1、进入main函数后,首先遇到House类,Java解释器查找House.class,然后载入它,在调用它的构造函数之前,先要初始化它的域,必须先初始化它的静态域,也就是先执行
static Test12 w4=new Test12(4),然后它的域的其他代码Test12 w3=new Test12(3),然后执行构造函数。
2、执行到new House(),继续重新执行初始化域,由于static一个类只执行一次,所以这次没有执行static Test12 w4=new Test12(4);而是直接执行Test12 w3=new Test12(3),然后执行构造函数。