标题: 代码块执行顺序(面试题),不要编译,推算结果 [打印本页] 作者: yonghong_cui 时间: 2015-9-15 21:13 标题: 代码块执行顺序(面试题),不要编译,推算结果 class W {
W() {
System.out.println("W....");
}
}
class Y {
Y() {
System.out.println("Y....");
}
}
class X {
Y b = new Y();
X() {
System.out.println("X....");
}
}
public class Z extends X {
W w = new W();
Z() {
super();
System.out.println("Z....");
}
public static void main(String[] args) {
new Z();
}
}