A. 1810 B. 1018 C. 1818 D. 1010
A. public static void a(int i){} B. public static int a(){} C. public static void a(int i,String name){} D. public static void a(String name){}
A. 如果程序中没有任何构造方法,编译器会默认增加一个无参数的构造方法 B. 如果程序中没有任何构造方法,编译器会默认增加一个有参数的构造方法 C. 如果程序中存在构造方法,编译器会默认增加一个有参数的构造方法 D. 如果程序中存在构造方法,编译器会默认增加一个无参数的构造方法
A. 10 B. 20 C. 30 D. 编译错误
A. dog.run(); B. Dog.run(); C. Dog d= new Dog(); D. run();
A. 初始化A B. 初始化A初始化A C. 初始化A初始化A初始化A D. 无
A. public static void Student(){} B. public static Student(){} C. public void Student(){} D. public Student(String name){}
A. this.x=x; B. x=this.x; C. x=x D. this.x=this.x;