• 2022-06-06
    阅读下面的程序,分析代码是否能编译通过,如果能编译通过,选正确。如果不能编译通过,选错误。import java.util.*;public class Test01 { public static void main(String[] args) { TreeSet ts = new TreeSet(); ts.add("b"); ts.add("a"); ts.add("c"); ts.add("c"); Iterator it = ts.iterator(); while(it.hasNext()) { System.out.println(it.next()); } }}
  • 正确

    内容

    • 0

      阅读下面的程序,分析代码是否能编译通过。如果能编译通过,请列出运行的结果;如果不能编译通过,请说明原因。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( );}}

    • 1

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

    • 2

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

    • 3

      阅读下面的程序,分析代码是否能编译通过,如果能编译通过,请列出运行的结果。如果不能编译通过,请说明原因。代码一:class Program01{static void Main(string[] args){string s = new string('a', 5);s[3] = 'b';}}

    • 4

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