类Student的声明如下: package com.school class Student{ Stri...
A.Student stu = new Student(“Tom”,23); stu.study(“数学”);
B.Student.study(“数学”);
C.Student stu = new Student(“Tom”,23); stu.study();
D.Student stu = new Student(“Tom”,23); String result=stu.study(“数学”);