1、虚拟机在首次加载Java类时,会对静态初始化块、静态成员变量、静态方法进行一次初始化
2、只有在调用new方法时才会创建类的实例
3、类实例创建过程:按照父子继承关系进行初始化,首先执行父类的初始化块部分,然后是父类的构造方法;再执行本类继承的子类的初始化块,最后是子类的构造方法
4、类实例销毁时候,首先销毁子类部分,再销毁父类部分
示例
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
public class Parent
{
public static int t = parentStaticMethod2();
{
System.out.println( "父类非静态初始化块" );
}
static
{
System.out.println( "父类静态初始化块" );
}
public Parent()
{
System.out.println( "父类的构造方法" );
}
public static int parentStaticMethod()
{
System.out.println( "父类类的静态方法" );
return 10 ;
}
public static int parentStaticMethod2()
{
System.out.println( "父类的静态方法2" );
return 9 ;
}
@Override
protected void finalize() throws Throwable
{
// TODO Auto-generated method stub
super .finalize();
System.out.println( "销毁父类" );
}
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
public class Child extends Parent
{
{
System.out.println( "子类非静态初始化块" );
}
static
{
System.out.println( "子类静态初始化块" );
}
public Child()
{
System.out.println( "子类的构造方法" );
}
public static int childStaticMethod()
{
System.out.println( "子类的静态方法" );
return 1000 ;
}
@Override
protected void finalize() throws Throwable
{
// TODO Auto-generated method stub
super .finalize();
System.out.println( "销毁子类" );
}
}
|
1
2
3
4
5
6
7
8
9
10
11
12
|
public class Test
{
public static void main(String[] args)
{
// TODO Auto-generated method stub
Parent.parentStaticMethod();
// Child child = new Child();
}
}
|
输出
1
2
3
|
父类的静态方法2
父类静态初始化块
父类类的静态方法
|
类中static 方法在第一次调用时加载,类中static成员按在类中出现的顺序加载。当调用静态方法2时输出
1
2
3
|
父类的静态方法2
父类静态初始化块
父类的静态方法2
|
注释掉Parent.parentStaticMethod();
去掉注释Child child = new Child();
1
2
3
4
5
6
7
|
父类的静态方法 2
父类静态初始化块
子类静态初始化块
父类非静态初始化块
父类的构造方法
子类非静态初始化块
子类的构造方法
|
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流。
原文链接:http://www.cnblogs.com/guoyuqiangf8/archive/2012/10/31/2748909.html