码迷,mamicode.com
首页 > 其他好文 > 详细

代码案例浅析" == "

时间:2018-08-24 17:23:41      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:rgs   ring   new   div   浅析   out   void   static   []   

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是新申请的内存块,而==判断的是对象的地址而非值,所以不一样。
    }

划重点:  == 比较的是内存中的地址

代码案例浅析" == "

标签:rgs   ring   new   div   浅析   out   void   static   []   

原文地址:https://www.cnblogs.com/assistants/p/9530592.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!