A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© kkopopo 中级黑马   /  2014-1-20 20:57  /  1021 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

==和equals()的区别
String tom = "I am student";
String jerry = "I am student";
tom == jerry ---------true;                                                            == 是看地址引用是否相同-------------引用 内存地址
tom.equals(jerry)-----true;                                                             equals是看对象内容-------------------实体 内存
String tom = new String("I am student");
String jerry = new String("I am stundet");
tom == jerry--------false
tom.equals(jerry)---true

1 个回复

倒序浏览
String tom = "I am student";     这个是字符串常量,存储在常量池中
String jerry = "I am student";    因为在常量池中已有,就不创建新的,直接从常量池中调用,所以一样

String tom = new String("I am student");
String jerry = new String("I am stundet");  只要new就是创建新对象,所以不一样
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马