已知stu1和stu2是Student类的两个对象,则执行“stu1>stu2”时会自动执行Student类的()方法。
A.__gt__
B.__ge__
C.__lt__
D.__le__
第1题:
A.__lt__
B.__le__
C.__gt__
D.__ge__
第2题:
A.0
B.null
C.false
D.编译错误
第3题:
创建一个名为student的新类,保存新类的类库名称是mylib,新类的父类是Person,正确的命令是
A.CREATE CLASS mylib OF student As Pemon
B.CREATE CLASS student OF Pe~on As mylib
C.CREATE CLASS student 0F mylib As Pe~on
D.CREATE CLASS Person OF mylib As student
第4题:
创建一个名为student的新类,保存新类的类库名称是mylib,新类的父类名是Person,正确的命令是( )。
A.CREATE CLASS mylib OF student AS Pcrson
B.CREATE CLASS student OF Person AS mylib
C.CREATE CLASS student OF mylib AS Person
D.CREATE CLASS Person OF mylib AS student
第5题:
第6题:
类Teacher和Student是类Person的子类; Person p; Teacher t; Student s; //p, t and s are all non-null. if(t instanceof Person) { s = (Student)t; } 最后一句语句的结果是:()
第7题:
编一个程序,定义类student和它的成员(学号,姓名,年龄和c_sharp程序设计成绩),用类student生成对象s,分别对对象s的成员赋值,然后输出对象s。
第8题:
下述代码执行后,可以被垃圾收集器收集的对象是哪一个() Student stua; stua = new Student(“Mike”); Student stub; stub = stua; stua = new Student(“Jack”);
第9题:
类Student代码如下:D class Student{ String name; int age; Student(String nm){ (构造方法) name = nm; } } 执行语句Student stu = new Student()后,字段age的值是哪项?()
第10题:
Student student 声明了一个类
new Student()创建了Student 对象的一个实例
Student student 声明了对象Student 的一个引用
class Student 声明了一个类
第11题:
第12题:
new Student()创建了Student对象的一个实例
Student student声明了对象Student的一个引用
class Student声明了一个类
new Student()创建了一个类
Student student 声明了一个类
第13题:
A.0
B.null
C.false
D.编译错误
第14题:
第15题:
设有下面两个类的定义: class Person{ long id // 身份证号 String name; //姓名 } class Student extends Person{ int score: //成绩 int getScore ( ) { return score; } } 则类Person和类Student的关系是( )。
A.包含关系
B.继承关系
C.关联关系
D.无关系
第16题:
A.包含关系
B.继承关系
C.关联关系
D.上述类定义有语法错误
第17题:
类Student代码如下: class Student{ String name; int age; Student(String nm){ name = nm; } } 执行语句Student stu = new Student()后,字段age的值是哪项?()
第18题:
在本机用net工具建立帐号stu1完整命令是()stu1 123 /add(密码是123)。
第19题:
对于如下代码,描述正确的是哪项?() class Student{ public static void main(String[] args){ Student student=new Student(); } }
第20题:
对于如下代码,描述正确的是哪项? () class Student{ public static void main(String[] args){ Student student = new Student(); } }
第21题:
0
null
false
编译错误
第22题:
CREATE CLASS mylib OF student As Person
CREATE CLASS student OF Person As mylib
CREATE CLASS student OF mylib As Person
CREATE CLASS Person OF mylib As student
第23题:
0
null
false
编译错误
第24题: