21.抽象类中只能有抽象方法,不能包含非抽象的方法。()
22.实现一个接口的非抽象类中一定要实现接口中的所有方法。()
23.一个类可以实现多个接口。()
24.定义在接口中的常量都默认为public、static和final。()
25.语句String[]s=new String[10];执行后,s[0]为未定义。(F)
26.StringBuffer类型的字符串是常量字符串。(F)
27.用Javac编译Java源文件后得到代码叫字节码。(T)
28.break语句可以用在循环和switch语句中。()
29.无名包中的类不能被其他包中的类引用。()
30.FileInputStream可以作为BufferedInputStream的参数。()
31.在使用BorderLayout时,最多可以放入五个组件。()
32.扩展的适配器类允许只覆盖想要使用的特定方法。()
33.RandomAccessFile并不是单纯的输入或输出流,它的直接父类是File类。()
34.Applet是一种特殊的Panel,它是java Applet的最外观容器。()()
35.Applet的类定义中虽然没有标准的main()方法,但仍可以用java命令独立运行。()
四、阅读程序,写出程序的运行结果
1.public class DoublearithmaticOperator{
public static void main(String args[]){
int a=10,b=4,c=20,d=6;
System.out.print(a+b*c+d);
System.out.print(",");
System.out.print(a+c%b);
System.out.print(",");
System.out.println(a++*b+c*--d);
}
}
2.public class PrintTest{
public static void main(String args[]){
int a=4,b=6,c=8;
String s="abc";
System.out.println(a+b+s+c);
System.out.println();
}
}
3.public class SwitchTest{
public static void main(String args[]){
int i=1;
switch(i){
case 0:System.out.print("zero,");break;
case 1:System.out.print("one,");