gpt4 book ai didi

java - S3==S4 返回 false,两者都指向 SCP 中的同一字符串,请说明原因

转载 作者:行者123 更新时间:2023-12-01 17:46:50 25 4
gpt4 key购买 nike

我正在尝试验证引用是否与下面的代码相同。

package com.test.oracleinterviewquestions;

public class StringTest {

public static void main(String args[]){
StringTest obj=new StringTest();
obj.testString();
}

public void testString(){
String s1=new String("you cant change me!");
String s2=new String("you cant change me!");
System.out.println("s1==s2: is "+s1==s2 );

String s3="you cant change me!";
System.out.println("s1==s3: is "+s1==s3);

String s4="you cant change me!";
System.out.println("s3==s4: is "+s3==s4);
System.out.println("---------------------");
}
}

让我们将这些值称为“yccm”,它是“你不能改变我!”的缩写。创建 S1 时,将在堆中创建一个引用 s1 的条目,并在 scp 中创建另一个条目,但没有引用。

现在,当我创建 S3 时,它将指向 SCP 中为 s1 创建的现有值,在 scp 中,同样,当我定义 S4 时,它也将指向 SCP 中现有的 YCCM 值。但是,当我打印 S3==S4 时,它返回 false。请让我知道什么是行为

enter image description here

最佳答案

a+b==c 被解析为 (a+b)==c,而不是 a + (b==c) >。即,您需要在比较周围加上括号。

关于java - S3==S4 返回 false,两者都指向 SCP 中的同一字符串,请说明原因,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54230214/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com