gzc426 / Java-Interview

Java 面试必会 直通BAT

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

String s3 = new String("1") + new String("1"); s3.intern(); String s4 = "11"; System.out.println(s3 == s4); //false not true

youngboyvip opened this issue · comments

public class HelloWorld {
public static void main(String []args) {
String s3 = new String("1") + new String("1"); s3.intern(); String s4 = "11"; System.out.println(s3 == s4);
}
}

image