• 2021-04-14
    给出下面代码段

    1) public class Test {
    2) int m, n;
    3) public Test() {}
    4) public Test(int a) { m=a; }
    5) public static void main(String arg[]) {
    6) Test t1,t2;
    7) int j,k;
    8) j=0; k=0;
    9) t1=new Test();
    10) t2=new Test(j,k);
    11) }
    12) }
    哪行将引起一个编译时错误?
  • line 10

    内容

    • 0

      分析程序,将代码补充完整public class Test { ________ __ int k=5; public static void main(String[] args){ Test t1=new Test(); t1.k++; System.out.println(Test.k); }}

    • 1

      下列代码的执行结果是 。public class Test {public int aMethod(){static int i=0;i++;System.out.println(i);}public static void main(String args[ ]){Test test = new Test();test.aMethod();}}

    • 2

      以下程序运行结果是?public class Test{int value;public static void main(String args[]) {Test t=new Test();if(t==null) {System.out.println("No Object");}else {System.out.println(t.value);}}} A: 0 B: C: NoObject D: 编译错误

    • 3

      (6-6)请阅读程序,写出程序运行结果。 class Test{ static int x=10; int y=99; { y=y+10; } static { x=x+5; } { y=y+10; } static { x=x+5; } public Test() {//构造方法 x=x+5; } { System.out.println(x*y); } } public class Demo11 { public static void main(String[] args) { Test t1=new Test(); Test t2=new Test(); } }

    • 4

      下列程序的运行结果是()。 public class Test public static void main ( String [ ] args ) int count = 0 for( int i = 1 i < 5 i = 2) for( int j = 1 j< = 10 j = 3) count System .out .print (count ) _