类Student的声明如下:packagecom.schoolclassStudent{Stringname;intage;Student(Stringname,intage){//code}voidstudy(Stringsubject){//code}}正确调用方法study(Stringsubject)的是哪项?()A.Studentstu=newStudent(“Tom”,23);stu.study(“数学”);B.Student.study(“数学”);C.Studentstu=newStude

题目
类Student的声明如下:packagecom.schoolclassStudent{Stringname;intage;Student(Stringname,intage){//code}voidstudy(Stringsubject){//code}}正确调用方法study(Stringsubject)的是哪项?()

A.Studentstu=newStudent(“Tom”,23);stu.study(“数学”);

B.Student.study(“数学”);

C.Studentstu=newStudent(“Tom”,23);stu.study();

D.Studentstu=newStudent(“Tom”,23);Stringresult=stu.study(“数学”);


相似考题
更多“类Student的声明如下:packagecom.schoolclassStudent{Stringname;intage;Student(Stringname,intage){//code}voidstudy(Stringsubject){//code}}正确调用方法study(Stringsubject)的是哪项?() ”相关问题
  • 第1题:

    2、假设student是一个含有name与age属性的结构体,如何调用学生的年龄信息? struct Student{ char name[20]; int age; }

    A.student.age

    B.student->age

    C.student[age]

    D.student(age)


    B

  • 第2题:

    以下()定义不会分配实际的存储空间。

    A.struct { char name[10] ; int age ; } student ;

    B.struct STUDENT { char name[10] ; int age ; } student ;

    C.struct STUDENT { char name[10] ; int age ; } ; struct STUDENT student;

    D.struct STUDENT { char name[10] ; int age ; } ;


    struct STUDENT { char name[10] ; int age ; } ;

  • 第3题:

    2、以下哪个定义不会分配实际的存储空间?

    A.struct { char name[10] ; int age ; } student ;

    B.struct STUDENT { char name[10] ; int age ; } student ;

    C.struct STUDENT { char name[10] ; int age ; } ; struct STUDENT student;

    D.struct STUDENT { char name[10] ; int age ; } ;


    struct STUDENT { char name[10] ; int age ; } ;

  • 第4题:

    以下哪个定义不会分配实际的存储空间?

    A.struct { char name[10] ; int age ; } student ;

    B.struct STUDENT { char name[10] ; int age ; } student ;

    C.struct STUDENT { char name[10] ; int age ; } ; struct STUDENT student;

    D.struct STUDENT { char name[10] ; int age ; } ;


    struct STUDENT { char name[10] ; int age ; } ;

  • 第5题:

    【多选题】下面()是Person类的构造方法。

    A.private Person(){ }

    B.Person(String name,int age){ }

    C.person(String name,int age){ }

    D.public Person(String name,int age,char sex){ }

    E.public void Person(String name,int age,char sex){ }


    A