1:D 实例化子类必须调用父类构造方法,如果没写,默认调用父类无参构造方法 2:B 同上,输出A , B,然后调用子类的fun 3:D public B(String s) { super(s); }这里显式调用父类的含参构造方法 4:D A没有sun()方法,这是子类B的方法 5:c 如果。