代码案例浅析" == "
Posted assistants
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了代码案例浅析" == "相关的知识,希望对你有一定的参考价值。
public static void main(String[] args) { String str ="hello"; String str2 = str; String str3 = "he" + new String("llo"); System.out.println(str == new String("hello")); //==比较内存地址 hello是新建的 故等于false System.out.println(str == str2); //将str2的引用指向str 因为是同一地址 故true System.out.println(str == str3); //因为str2中的llo是新申请的内存块,而==判断的是对象的地址而非值,所以不一样。 }
划重点: == 比较的是内存中的地址
以上是关于代码案例浅析" == "的主要内容,如果未能解决你的问题,请参考以下文章
[原创][Synth 8-2543] port connections cannot be mixed ordered and named ["*_Top.v":1151](代码片
nginx: [error] open() "/var/run/nginx/nginx.pid" failed (2: No such file or directory)(代码片