• 2022-06-18
    阅读下面的程序,分析代码是否能够编译通过,答案填“通过”或“不通过” public class Test04 { public static void main(String args[]) { int n = 9; while (n > 6) { System.out.println(n); n--; } } }
  • 通过

    内容

    • 0

      阅读下面的程序,分析代码是否能够编译通过,答案填“通过”或“不通过”public class Test01 { public static void main(String[] args) { byte b = 3; b = b + 4; System.out.println("b=" + b); }}

    • 1

      阅读下面的程序,分析代码是否能够编译通过,如果能编译通过,请列出运行的结果。否则请说明编译失败的原因。 class Test{ int a = 10; public static void main(String[] args){ int a= 20; System.out.println("a = "+ a); } }

    • 2

      智慧职教: 阅读下面小程序,选出正确答案()。 public class TestString { public static void main(String[] args) { String str = "I am a String!"; int n=str.length(); char c=str.charAt(7); System.out.println(n); System.out.println(c); } }

    • 3

      阅读下面的程序,分析代码是否能够编译通过(能通过选“正确”,不能通过选“错误”) class A { private int secret = 5; } public class Test1 { public static void main(String[] args) { A a = new A(); System.out.println(a.secret++); } }

    • 4

      阅读下面的程序,分析代码是否能编译通过。如果能编译通过,请列出运行的结果;如果不能编译通过,请说明原因。class RunHandler {public void run() {System.out.println("run");}}public class Read01 {public static void main(String [] args) {Thread t = new Thread(new RunHandler( ));t.start( );}}