【单选题】
运行下面程序时,会产生什么异常?( ) 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];
}
}
【单选题】
运行下面程序时,会产生什么异常?( ) 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;
}
}
【单选题】
给出下面代码段, 哪行将引起一个编译时错误?( )
1) public class Test {
2) int n = 0;
3) int m = 0;
4) public Test(int a) { m=a; }
5) public static void main(String arg[]) {
6) Test t1,t2;
7) int j,k;
8) j=3; k=5;
9) t1=new Test();
10) t2=new Test(k);
11) }
12) }
【单选题】
已知有下面类的说明: public class X5_1_1 extends x{
private float f =10.6f; int i=16; static int si=10; public static void main(String[] args) {
X5_1_1 x=new
}
}
X5_1_1(); 在 main()方法中,下面哪条语句的用法是正确的?( )