首页 试题详情
单选题

为使下列代码正常运行,应该在下划线处填入的选项是:   abstract class Person{     public Person(String n){       name=n;     }     public____String getDescription();     public String getName(){       return name;     }     private String name;   }

Astatic

Bprivate

Cabstract

Dfinal

正确答案:A (备注:此答案有误)

相似试题

  • 单选题

    使下列代码正常运行应该在下划线填入的选项是:  int[] numbers=new int[n];  for(int i=0;i

    答案解析

  • 单选题

    使下列代码正常运行应该在下划线填入的选项是:  ObjectInputStream in=new_____(new FileInputStream(employee . dat));  Employee[] newStaff=(Employee[])in.readObject();  in .cIose();

    答案解析

  • 单选题

    阅读下列利用递归来求n!的程序:class FactorialTest{ static long Factorial (int n) { //定义Factorial ()方法 if (n==1) return 1; else return n* Factorial(_____); } public static void main (String a[]) { // main ()方法 int n=8; System.out.println{n+! = +Factorial (n)}; }}保证程序正确运行在下划线应该填入的参数是:

    答案解析

热门题库