• 2022-06-08
    关于以下程序段,运行结果是()1.String  s1 =“a”+“b”;  2.String  s2 = new  String(s1);  3.if(s1 == s2)4.Sytstem.out.print("hello"));  5.if (s1.equals(s2))  6.Sytstem.out.print("world"));
    A: hello
    B: world
    C: helloworld
    D: 没有输出