- class Parent1 {
- Parent1(String s){
- System.out.println(s);
- }
- }
- class Parent2 extends Parent1{
- Parent2(){
- System.out.println("parent2");
- }
- }
- public class Child extends Parent2 {
- public static void main(String[] args) {
- Child child = new Child();
- }
- }
复制代码
13. 给定如下一个Java源文件Child.java,编译并运行Child.java,以下结果正确的是( )
A. 编译错误:没有找到构造器Child()
B. 编译错误:没有找到构造器Parent1()
C. 正确运行,没有输出值
D. 正确运行,输出结果为:parent2
|
|