设已有一个类Student,现要编写一个继承Student类的子类Boy,则Boy类的声明形式为public
class Boy ______ Student。
class Boy ______ Student。
举一反三
- 下面是几条定义类的语句,不能被继承的类是( )。 A: abstract class Student {} B: class Student{} C: public class Student{} D: sealed class Student{}
- 下面关于子类继承父类,正确的是( )。 A: public class Student extends People{} B: public class Student implements People{} C: public class Student extends Teacher People{} D: 以上都不正确
- — Where are the () — They are playing ()football on the playground. A: boys students; the B: boy students; the C: boy student; / D: boy students; /
- 类Student在包jit.edu中,另一个包中的程序需要创建一个Student类实例,则Student类应声明为________。 A: protected B: private C: 默认 D: public
- 【单选题】下列代码段声明了3个类: classPerson{); class Student :public Person{}; class Undergraduate :Student{}; 下列关于这些类之间关系的描述中,错误的是()。 A. 类Person是类Undergraduate的基类 B. 类Undergraduate从类Student公有继承 C. 类Student是类Person的派生类 D. 类Undergraduate是类Person的派生类