题目内容

设类X已经正确定义了满足各种参数的构造方法,下列声明 X类的对象x1的语句中正确的是( )

A. X x1=new x1;
B. public X x1= new X(int 123);
C. X x1=new class( );
D. X x1=new X( );

查看答案
更多问题

以下类的定义中,错误的方法是( )public class CA {static int a=1;public int b=10;static int geta(){return a;} //1int getb(){return a;} //2int getc(){return b;} //3static int getd(){return b;} //4}

A. 1
B. 2
C. 3
D. 4

下面是一个类的定义,请完成程序填空。public class【1】{int x,y;Myclass(int i,【 2】) { // 构造方法x=i;y=j;}}

A. Myclass ;int j
B. myclass ; int
C. Myclass ; j
D. myclass; int j

下面一个类的定义,将其补充完整。class A {String s;【1】(【2】) {//定义构造函数s=s1;}}

A. 【1】public A【2】String s
B. 【1】public A【2】String s1
C. 【1】 A【2】String s
D. 【1】 A【2】String

以下程序定义类Student,填空完善类定义。class Student{String name;double abc;【1】(String name,double abc){//定义构造函数【2】=name;【3】=abc;}}

A. 【1】student【2】name【3】abc
B. 【1】student【2】this.name【3】this.abc
C. 【1】Student【2】this.name【3】this.abc
D. 【1】Student【2】name【3】abc

答案查题题库