构造方法中不用this且不用base,则会自动会调用base()
A: 正确
B: 错误
A: 正确
B: 错误
举一反三
- 构造方法中不用this且不用base,则会自动会调用base()
- (6-2)定义如下Base类,能在(1)处正确调用Base的构造方法。 class Base{ int x,y; Base(int x){} Base(int x,int y){ //(1)调用Base的构造方法 } }
- 如何能使程序调用Base类的构造方法输出"base constructor";...ived() {//Three}}
- 如何能使程序调用Base类的构造方法输出"base constructor"; class Base{ Base(int i){ System.out.println("base constructor"); } Base(){ } } public class Sup extends Base{ public static void main(String argv[]){ Sup s= new Sup(); //One } Sup() { //Two } public void derived() { //Three } }
- 在子类的构造方法中,可以使用()关键字来调用父类的构造方法 A: base B: super C: this D: extends