单项选择题
下述代码执行后,有几个引用变量和几个对象?() 对象声明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. 以上都不对
public class TestApp{ public int mymethod(){ try{ ...
public class TestApp{ public int mymethod(){ try{ int i = 0; int j = 1 / i; System.out.println(“1”); }finally{ System.out.print(“4”); } return 1; } } 上述程序运行后的输出是哪项?()
A. 4 B. 14 C. 41 D. 以上都不对
public class TestApp{ public static void main(String[...
public class TestApp{ public static void main(String[] args){ try{ int i = 0; int j = 1 / i; System.out.println(“1”); } catch(Exception e){ System.out.print(“3”); } finally{ System.out.print(“4”); } } } 上述程序运行后的输出是哪项?()
A. 4 B. 34 C. 43 D. 14