设为首页 加入收藏

TOP

Java类的加载顺序
2015-04-07 15:30:09 来源: 作者: 【 】 浏览:29
Tags:Java 加载 顺序

Java中类的初始化规则是:先初始化static成员变量和static块,再初始化non-static成员变量和non-static块,最后初始化构造函数。


例1:


package demo;
/**
?* 此类主要介绍java类的加载顺序
?* */


public class TestOrder {
? ? public static int k = 0;
? ? public static TestOrder t1 = new TestOrder("t1");
? ? public static TestOrder t2 = new TestOrder("t2");
? ? public static int i = print("i");
? ? public static int n = 99;
? ? private int a = 0;
? ? public int j = print("j");
? ? {
? ? ? ? print("构造块");
? ? }
? ? static {
? ? ? ? print("静态块");
? ? }
? ? public TestOrder(String str) {
? ? ? ? System.out.println((++k) + ":" + str + "? i=" + i + "? ? n=" + n);
? ? ? ? ++i;
? ? ? ? ++n;
? ? }
? ? public static int print(String str) {
? ? ? ? System.out.println((++k) + ":" + str + "? i=" + i + "? ? n=" + n);
? ? ? ? ++n;
? ? ? ? return ++i;
? ? }
? ? public static void main(String args[]) {
? ? ? ? TestOrder t = new TestOrder("init");
? ? }
}1
其结果为:


1:j i=0 n=0
2:构造块 i=1 n=1
3:t1 i=2 n=2
4:j i=3 n=3
5:构造块 i=4 n=4
6:t2 i=5 n=5
7:i i=6 n=6
8:静态块 i=7 n=99
9:j i=8 n=100
10:构造块 i=9 n=101
11:init i=10 n=102


】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇Linux动态库生成与使用指南 下一篇SendMail带附件版本的Java实现

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容: