【发布时间】:2020-04-28 04:20:39
【问题描述】:
这是一个面试问题,手动编写以下代码的输出:
public class StaticTest {
public static int k = 0;
public static StaticTest t1 = new StaticTest("t1");
public static StaticTest t2 = new StaticTest("t2");
public static int i = print("i");
public static int n = 99;
public int j = print("j");
{
print("Constructor Block");
}
static {
print("Static Block");
}
public StaticTest(String str) {
System.out.println((++k)+":"+str+" i="+i+" n="+n);
++n;
++i;
}
public static int print(String str) {
System.out.println((++k)+":"+str+" i="+i+" n="+n);
++i;
return ++n;
}
public static void main(String[] args) {
StaticTest t = new StaticTest("init");
}
}
输出:
1:j i=0 n=0
2:Constructor Block i=1 n=1
3:t1 i=2 n=2
4:j i=3 n=3
5:Constructor Block i=4 n=4
6:t2 i=5 n=5
7:i i=6 n=6
8:Static Block i=7 n=99
9:j i=8 n=100
10:Constructor Block i=9 n=101
11:init i=10 n=102
很困惑为什么要先执行print,甚至以j开头?
我认为静态字段和块是在类加载时执行的,所以至少它应该在public int j = print("j");之前执行public static int i = print("i");。
【问题讨论】:
-
参考这里以便更好地理解stackoverflow.com/questions/19561332/…
标签: java constructor static