1.去掉 main 方法的 static 修饰符,程序会怎样?
A:程序无法编译
B:程序正常编译,正常运行
C:程序正常编译,正常运行一下马上退出
D:程序正常编译,运行时报错
答:D
题目解析:运行时异常如下:
错误: main 方法不是类 xxx 中的 static, 请将 main 方法定义为:
public static void main(String[] args)
2.以下程序运行的结果是?
public class TestClass {public static void main(String[] args) {System.out.println(getLength());}int getLength() {private String s = "xyz";int result = s.length();return result;}
}
A:3
B:2
C:4
D:程序无法编译
答:D
题目解析:成员变量 s 不能使用任何修饰符(private/protected/public)修饰,否则编译会报错。
3.以下程序有几处错误?
abstract class myAbstractClassprivate abstract String method(){};
}