public class Test {
public static void main(String[] args) {
String a = null;
String b = null;
String c = "";
String d = "";
String e = new String("abc");
String f = "abc";
System.out.println("a == b:" + (a == b));
System.out.println("c == d:" + (c == d));
System.out.println("e == f:" + (e == f));
}
}
控制台输出:
a == b:true
c == d:true
e == f:false
第一个a与b的比较,都是null,所以是a跟b相等。
第二个“”字符串是一个匿名对象,然后c和d都会指向这个匿名对象,堆内存地址是一样的,所以c跟d相等。
第三个e其实创建了2个String对象,一个是“abc”的匿名对象,一个是通过new关键字开辟出来的堆内存空间对象,然后e指向的其实是new开辟的那个String对象,而f指向的其实是“abc“这个匿名对象,所以f和e不相等。
String g = new String(null); 这种方式是不行的,编译时会报错。
时间: 2024-10-08 11:01:02