阅读下列代码,下面哪个选项是正确的( )public class TestException{public static void main(String []args) throws Exception{ if(args[0]=="123") //命令行输入参数123 throw new IOException(); }}
A: 程序编译正确,命令行输入参数123,抛出异常
B: 程序语法错误
C: 程序编译错误,
D: 程序编译正确,没有输出结果
A: 程序编译正确,命令行输入参数123,抛出异常
B: 程序语法错误
C: 程序编译错误,
D: 程序编译正确,没有输出结果
举一反三
- 读下面代码,哪个选项是正确的( )import java.io.*;public class Test2{public static void main(String []args)throws IOException{if(args[0]==”hello”)throw new IOException();}} A: 没有错误,程序编译正确 B: 编译错误,不能够在main方法中抛出异常 C: 编译错误,IOException是一个系统异常,不能够由application程序产生 D: 没有输出结果
- 对于如下代码,下列哪个叙述是正确的?public class E { public static void main (String args[]) { String s0 = args[0]; String s1 = args[1]; String s2 = args[2]; System.out.println(s2); }} A: 程序出现编译错误 B: 无编译错误,在命令行执行程序:“java E I love this game”,程序输出game C: 无编译错误,在命令行执行程序:“java E go on”,运行异常:ArraylndexOutOfBoundsException:2. D: 无编译错误,在命令行执行程序:“java E you are ok”程序输出you
- 35 下面程序运行的结果是() public class X { private static int a; public static void main(String [] args) { modify(a); System.out.println(a); } public static void modify(int a) { a++; } } A: 0 B: 1 C: 程序编译失败 D: 程序抛出异常
- 代码如下: public class Foo{ public static void main(String args[]){ String s; System.out.println("s="+s); } } 下列关于程序编译运行的说法正确的是: A: 程序编译正确,并输出: “s=” 。 B: 程序编译正确,并输出: “s=null”。 C: 程序编译错误,因为变量s未被初始化。 D: 程序编译正确,但运行时抛出空指针异常。
- 对于如下代码,叙述正确的是()public class E {public static void main (String args[]) {String s1 = args[1];String s2 = args[2];String s3 = args[3];System.out.println(s3);}} A: 程序出现编译错误 B: 无编译错误,在命令行执行程序:“java E I love this game”,程序输出this C: 无编译错误,在命令行执行程序:“java E let us go”,程序无运行异常 D: 无编译错误,在命令行执行程序:“java E 0 1 2 3 4 5 6 7 8 9”,程序输出3