Java面向对象编程练习题(12)
发布时间:2021-06-08
发布时间:2021-06-08
D.程序可以编译运行,但是没有输出
6. 能作为类及其成员的修饰符是( )。
A.interface C.protected
7. 下列方法定义中,方法头不正确的是( )。
B.class D.public
B.public static int x(double y){…} D.public int x(){…} B.使用对象的变量时 D.创建对象时
B.abstract private move(){…} D.abstract final class H1{…} B.封装 D.多态
A.public static x(double a){…} C.void x(double d){…}
8. 构造方法在( )时被调用。
A.类定义时
C.调用对象方法时
9. 下列哪个类声明是正确的( )。
A.public abstract class Car{…} C.protected private number; A.抽象 C.继承
10. 下列不属于面向对象程序设计的基本特征的是( )。
11. 请看下面的程序段 class Person{
String name,department; int age;
public Person(String n){name=n;}
public Person(String n,int a){name=n; age=a;} public Person(String n, String d, int a ){
//doing the same as two arguments version if constructer }
下面那个选项可以添加到// doing the same 处( )
A.Person(n,a) C.this(n,a)
12. 请看下面的程序段 class Test{
private int m;
public static void fun(){ //some code } }
方法fun()如何来访问变量m( )
B.this(Person(n,a)) D.this(name.age)
A.将private int m 改成protected int m B.将private int m 改成public int m C.将private int m 改成static int m A.void A(int x){ }
D.将private int m 改成int m B.public A(int x){ }
13. 有一个类A,对于其构造函数的声明正确的是( )。