博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

String 类型的equals

Posted on 2007-08-06 10:57  醉阳  阅读(169)  评论(0编辑  收藏  举报
String tom=new String("we are students");
String boy=new String("We are students");
String jerry=new String("we are students");

tom.equals(boy);//结果:false;
tom.equals(jerry);//结果:true;

tom==jerry;//结果:false(String 类型是一个对象,而==比较的是否同一对象,所以是false)