阅读如下程序段,执行的结果是( )class Father{Father(){System.out.println("父类的构造方法");}}class Child extends Father{Child(){System.out.println("子类的构造方法");}}public class Test {public static void main(String[] args) {Child c=new Child();}}
A. 父类的构造方法子类的构造方法
B. 子类的构造方法父类的构造方法
C. 父类的构造方法
D. 子类的构造方法