单项选择题
interface Altitude { //insert code here } 和4个声明: int HIGH = 7; public int HIGH = 7; abstract int HIGH = 7; interface int HIGH = 7; 分别插入到第2行,有多少行可以编译?()
A. 0 B. 1 C. 2 D. 3 E. 4
现有: classParser(类)extends(继承)Utils{ publicstaticvoidmai...
现有: class Parser (类)extends(继承) Utils { public static void main(String [] args) { System.out.print(输出打印)(new Parser().getInt("42")); } int getInt(String arg) { return Integer.parseInt(arg); } } class Utils { int getInt(String arg) throws Exception { return 42; } } 结果为:()
A. 42 B. 编译失败。 C. 无输出结果。 D. 运行时异常被抛出。
下述代码执行后,有几个引用变量和几个对象?() 对象声明Student stu(对象)= new Studen...
下述代码执行后,有几个引用变量和几个对象?() 对象声明Student stu(对象)= new Student(“Mike”); 对象定义(开辟空间) Student stua;(声明变量) Stua = stu;
A. 2个引用变量,1个对象 B. 1个引用变量,1个对象 C. 2个引用变量,2个对象 D. 1个引用变量,2个对象
public class TestA{ public void methodA() throws IOE...
public class TestA{ public void methodA() throws IOException{ //…… } } public class TestB extends TestA{ public void methodA() throws EOFException{ //…… } } public class TestC extends TestA{ public void methodA() throws Exception{ //…… } } 当编译类TestC的时候,结果是哪项?()
A. 正常 B. 编译错误 C. 运行错误 D. 以上都不对