在 Java 中运行构造函数代码之前是否已初始化字段?

2022-01-18 00:00:00 initialization constructor java

谁能解释以下程序的输出?我认为构造函数是在实例变量之前初始化的.所以我期待输出是XZYY".

Can anyone explain the output of following program? I thought constructors are initialized before instance variables. So I was expecting the output to be "XZYY".

class X {
    Y b = new Y();

    X() {
        System.out.print("X");
    }
}

class Y {
    Y() {
        System.out.print("Y");
    }
}

public class Z extends X {
    Y y = new Y();

    Z() {
        System.out.print("Z");
    }

    public static void main(String[] args) {
        new Z();
    }
}

推荐答案

正确的初始化顺序是:

  1. 静态变量初始化器和静态初始化块,如果该类之前没有被初始化,则按文本顺序排列.
  2. 构造函数中的 super() 调用,无论是显式的还是隐式的.
  3. 实例变量初始化器和实例初始化块,按文本顺序排列.
  4. super() 之后构造函数的剩余部分.

参见 §2.17.5 部分Java 虚拟机规范的-6.

相关文章