【单选题】
运行下面程序时,会产生什么异常?( ) public class X7_1_4 {
public static void main(String[] args) {
int x = 0; int y = 5/x; int[] z = {
1,2,3,4
}
; int p = z[4];
}
}
③
ArrayIndexOutOfBoundsException
【单选题】
下列说法中错误的一项是( )。
③
ContainerAdapter 是容器适配器
【单选题】
已知有定义:String s=I love,下面哪个表达式正确?( )
④
String s = s.toLowerCase();
【单选题】
下列代码中给出正确的在方法体内抛出异常的是( )
①
new throw Exception( );
②
throw new Exception( );
【单选题】
Container 是下列哪一个类的子类( )。
【单选题】
Java系统标准输出对象System.out使用的输出流是( )。
【单选题】
能读入字节数据进行Java基本数据类型判断过虑的类是( )。
【单选题】
运行下面程序时,会产生什么异常?( ) public class X7_1_5 {
public static void main(String[] args) {
int[] z = {
1,2,3,4
}
; int p = z[4]; int x = 0; int y = 5/x;
}
}
③
ArrayIndexOutOfBoundsException
【单选题】
下列哪一个是Java系统的标准输入流对象( )。