黑马程序员技术交流社区
标题:
分享,精选30题Java笔试题解答30
[打印本页]
作者:
heshiwei
时间:
2015-10-18 10:52
标题:
分享,精选30题Java笔试题解答30
30.下面是People和Child类的定义和构造方法,每个构造方法都输出编号。在执行new Child("mike")的时候都有哪些构造方法被顺序调用?请选择输出结果 ( )
class People {
String name;
public People() {
System.out.print(1);
}
public People(String name) {
System.out.print(2);
this.name = name;
}
}
class Child extends People {
People father;
public Child(String name) {
System.out.print(3);
this.name = name;
father = new People(name + ":F");
}
public Child() {
System.out.print(4);
}
}
复制代码
作者:
polarfox17
时间:
2015-10-18 14:29
看看答案,看了你的题感觉自己的路还很长
作者:
depp
时间:
2015-10-18 15:30
学习下下
作者:
苯小孩hehe
时间:
2015-10-22 02:13
2 3 2?
作者:
Alex_zou83
时间:
2015-10-22 04:29
看看这个
作者:
90后的96迷
时间:
2015-11-21 00:50
大神,这些题真有用
作者:
325122062q
时间:
2015-11-21 10:42
谢谢分享
作者:
wuzhiyi8323
时间:
2017-8-20 23:21
111111111111
作者:
黑马程序员.
时间:
2017-8-21 20:00
哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈
作者:
小眼镜g
时间:
2017-8-22 00:49
感谢楼主
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2