任何人都可以直接使用代码及其输出吗?
public class HelloWorld {
public static void main(String[] args) {
String s1 = "Hello World";
String s6 = "Hello" + " World";
String s7 = "Hello";
String s8 = " World";
String s9 = s7 + s8;
String s10 = s7 + " World";
System.out.println(s1==s6);
System.out.println(s1==s9);
System.out.println(s1==s10);
System.out.println(s9==s10);
}
}
输出 :
true
false
false
false
我知道这s1
是在字符串常量池中创建的。我想知道如何创建s6
,s9
以及s10
由于使用了连接运算符。