第1题:
假设已经定义好了一个类student,现在要定义类derived,它是从student私有派生的,定义类derived的正确写法是()。
A、“classderived::studentprived{//…};”
B、“classderived:studentpublic{//…};”
C、“classderived:privatestudent{//…};”
D、“classderived::studentpublicstuednt{//…};”
第2题:
A.Studentstudent声明了一个类
B.newStudent()创建了Student对象的一个实例
C.Studentstudent声明了对象Student的一个引用
D.classStudent声明了一个类
第3题:
第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题:
定义一个表示学生信息的类Student,要求如下:
第6题:
类Student代码如下: class Student{ String name; int age; Student(String nm){ name = nm; } } 执行语句Student stu = new Student()后,字段age的值是哪项?()
第7题:
编一个程序,定义类student和它的成员(学号,姓名,年龄和c_sharp程序设计成绩),用类student生成对象s,分别对对象s的成员赋值,然后输出对象s。
第8题:
对于如下代码,描述正确的是哪项? () class Student{ public static void main(String[] args){ Student student = new Student(); } }
第9题:
0
null
false
编译错误
第10题:
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
第11题:
0
null
false
编译错误
第12题:
第13题:
A.newStudent()创建了Student对象的一个实例
B.Studentstudent声明了对象Student的一个引用
C.classStudent声明了一个类
D.newStudent()创建了一个类
E.Studentstudent声明了一个类
第14题:
下列代码段中声明了3个类: Class Person{}; Class Student:publiC Person{}; Class Undergraduate:Student{}; 下列关于这些类之间关系的描述中,错误的是( )。
A.类Person是类Undergraduate的基类
B.类Undergraduate从类Student公有继承
C.类Student是类Person的派生类
D.类Undergraduate是类Person的派生类
第15题:
创建一个名为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
第16题:
下列代码段声明了3个类:
classPerson{);
classStudent:publicPerson{};
classUndergraduate:Student{);
下列关于这些类之间关系的描述中,错误的是( )。
A.类Person是类Undergraduate的基类
B.类Undergraduate从类Student公有继承
C.类Student是类Person的派生类
D.类Undergraduate是类Person的派生类
第17题:
第18题:
类Teacher和Student是类Person的子类; Person p; Teacher t; Student s; //p, t and s are all non-null. if(t instanceof Person) { s = (Student)t; } 最后一句语句的结果是:()
第19题:
对于如下代码,描述正确的是哪项?() class Student{ public static void main(String[] args){ Student student=new Student(); } }
第20题:
在类Acoount中,正确引入类school.Student的语句是哪一项?()
第21题:
Student student 声明了一个类
new Student()创建了Student 对象的一个实例
Student student 声明了对象Student 的一个引用
class Student 声明了一个类
第22题:
第23题:
new Student()创建了Student对象的一个实例
Student student声明了对象Student的一个引用
class Student声明了一个类
new Student()创建了一个类
Student student 声明了一个类
第24题:
将构造一个Student对象;
表达式是合法的;
表达式是错误的;
编译时正确,但运行时错误。