下列哪种操作不会抛出异常?( )
A: String str = "abc"; int i = Integer.parseInt(str);
B: String str = null; str.toUperCase();
C: int x = 4; int y = 5; int z = x / y ;
D: int[] num = new int[5]; num[5] = 5;
A: String str = "abc"; int i = Integer.parseInt(str);
B: String str = null; str.toUperCase();
C: int x = 4; int y = 5; int z = x / y ;
D: int[] num = new int[5]; num[5] = 5;
举一反三
- 以下语句输出的结果是()String str = ”123”;int x = 4, y = 5;str = str + x + y;System.out.println(str);
- 智慧职教: 以下语句输出的结果是什么? String str = "123"; int x = 4, y = 5; str = x + y + str; System.out.println(str);
- 以下语句输出结果是( ) String str=”123”; int x=4,y=5; str=str+(x+y); System.out.println(str); A: 1239 B: 12345 C: 编译错误 D: 123+4+5
- ( )是合法的数组定义。 A: char str[ ]={48,49,50,51,52,53}; B: int a[5]={0,1,2,3,4,5}; C: int a[]="string"; D: char str[ ]=‘string’;
- 定义变量时,下面表述错误的是( ) A: int x=y=z=5; B: int price, num=3; C: int a; int b; D: int x=5, y=5, z=5;