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

为什么 String s1="hello" String s2 = new String("hello") s1==s2 为flase

时间:2019-10-02 00:52:36      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:str   变量   数据   数据类型   对象   ase   一个栈   字符串   查看   

    String s2 = new String("hello")  创建三个对象  若常量池中没有hello 创建一个 hello 对象 再在堆中创建一个new String 对象 还有 一个栈中的 数据类型为String s2的变量

    s2所保存的地址是堆中创建对象地址

     String s1="hello" 查看字符串常量池中有无hello对象 无则创建对象 返回地址值 若有 则直接返回地址值

 

为什么 String s1="hello" String s2 = new String("hello") s1==s2 为flase

标签:str   变量   数据   数据类型   对象   ase   一个栈   字符串   查看   

原文地址:https://www.cnblogs.com/zhongmeilin/p/11616399.html

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