class X{
Y y=new Y();
public X(){
System.out.print("X");
}
}
class Y{
public Y(){
System.out.print("Y");
}
}
public class Z extends X{
Y y=new Y();
public Z(){
System.out.print("Z");
}
public static void main(String[] args) {
new Z();
}
}
大家帮忙看一下,这个题目的答案是什么,以及解析好吗,感觉自己学的不扎实,做不出来 |
|