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)
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)