标签: java string comparison
public class practice { public static void main(String[] args) { String str1 = new String("abcdef"); String str2 = new String("abcdef"); System.out.println(str1==str2); } }
有人可以解释为什么即使它们具有相同的字符串内容也会返回false。