参考资料《java 编程思想》,关于含有基类的导出类,其成员的初始化过程是一个容易让人困惑的地方,下面通过具体的实例进行讲解,代码取自《java 编程思想》,代码如下:
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
35
36
37
38
39
40
|
import static net.mindview.util.print.*;
/**
* all rights reserved, designed by www.tydic.com
*
* @project: myexerciseproject
* @title: beetle.java
* @package:
* @description: todo(learn java)
* @author: yang xiaoyong
* @date: 2017年10月30日 下午4:22:19
* @version: v1.0
* @copyright: 2017 inc. all rights reserved. 注意:本内容仅限于学习交流使用,禁止外泄以及用于其他的商业目的
*/
public class beetle extends insect {
private int k = printinit( "beetle.k initialized" );
beetle() {
// todo auto-generated constructor stub
print( "k = " + k);
print( "j = " + j);
}
private static int x2 = printinit( "static beetle.x2 initialized" );
public static void main(string[] args) {
print( "beetle constructor" );
beetle beetle = new beetle();
}
}
class insect {
private int i = 9 ;
protected int j;
insect() {
// todo auto-generated constructor stub
print( "i = " + i + ". j = " + j);
j = 39 ;
}
private static int x1 = printinit( "static insert.x1 initialized" );
static int printinit(string s) {
print(s);
return 47 ;
}
}
|
程序输出结果为:
则uml类图为:
则beetle
是导出类,insect
是基类,当程序试图从main()函数入口点进入,下面是运行过程:
- 1. 首先需要由加载器将编译好的beetle.class文件加载到jvm中。
- 2. 通过extends 关键字识别基类insect,加载insect.class文件。
至此,完成类的加载过程。然后,可以进行对象的创建。
对程序输出结果进行分析:因为静态成员变量在类加载的时候进行初始化,而在运行main()
函数之前,完成加载类的过程。所以在执行main()函数之前,x1, x2已经完成初始化过程,注意此时初始化过程是一个从基类“向外”扩散的,类似导出类的构造器的构建过程。输出如下:
static insert.x1 initialized
static beetle.x2 initialized
之后,在创建beetle
的过程中,其基类的构造器会被自动调用,所以首先执行inspect构造器里面的内容,完成print()
函数,并对j的变量赋值。最后,调用beetle类自身的构造器进行对象的创建,最终输出符合分析。
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对服务器之家的支持。如果你想了解更多相关内容请查看下面相关链接
原文链接:https://blog.csdn.net/yangyong0717/article/details/78395696