The teacher told the student that light()faster.
A.travels
B.traveled
C.would travel
第1题:
第2题:
从Student类和Teacher类多重派生Graduate类
第3题:
在以下程序段的空白处填入(),能够正确输出teacher。 #include<stdio.h> main() {char *p[3]={"student","teacher","classroom"}; printf("%s", ); }
A.*(p+1)
B.*p+1
C.*p[1]
D.*p+7
第4题:
类Teacher和Student是类Person的子类; Person p; Teacher t; Student s; //p, t and s are all non-null. if(t instanceof Person) { s = (Student)t; } 最后一句语句的结果是:()
A.将构造一个Student对象;
B.表达式是合法的;
C.表达式是错误的;
D.编译时正确,但运行时错误。
第5题:
在视频中,父类Person、子类Student和Teacher,都必需定义whoAmI()方法。
第6题:
【简答题】5.6编写一个Java应用程序,要求有3个线程:studentl、student2和teacher,其中线程studentl准备“睡”1分钟后再开始上课,线程student2准备“睡”5分钟后再开始上课。teacher在输出4句“上课”后,“唤醒”了休眠的线程studentl;线程studentl被“唤醒”后,负责再“唤醒”休眠的线程student2。