有程序如下,关于程序的描述哪个是正确的?
public class Person {
static int arr[] = new int[10];public static void main(String a[])
System. out.println(arr[0]); }
}
时间:2021-01-08
人气:0
编译并运行以下程序,以下描述哪个选项是正确的()
1. class x{
2. protected String toString({3.return super.toString O ; }4.}
时间:2021-01-08
人气:0
设有下面两个类的定义:
class Person {
class Student extends Person {
longid;//身份证号
intscore;//入学总分
String name;//姓名
intgetScore(){
)
return score;
}
}
则类Person和类Student的关系是
时间:2021-01-08
人气:0