• 2022-06-01
    String s1 = new String("Hello");
    String s2 = new String("there");
    String s3 = new String();上面是Java程序中的一些声明,下面的选项中能通过编译的是( )。
    A: s3 = s1+ s2
    B: s3 = s1 & s2
    C: s3 = s1 || s2
    D: s3 = s1 && s2