/**
* ==和!=比较的是对象的引用
*/
package test;
public class equals1 {
public static void main(String[] args){
Integer n1 = new Integer(47);
Integer n2 = new Integer(47);
System.out.println(n1==n2);
}
}
/*Output:
* false
*/
如果想比较两个对象的实际内容是否相同,必须使用所有对象都适用的特殊方法equals(),但这个方法不适用与“基本类型”,基本类型直接用==和!=即可。
package test;
public class equals2 {
public static void main(String[] args){
Integer n1 = new Integer(47);
Integer n2 = new Integer(47);
System.out.println(n1.equals(n2));
}
}
/*Output:
* true
*/
在必要的时候,可以在自己的新类中覆盖equals()方法。
值相等,用equals()比较,不一定是true。关键是看类中实现的equals()方法。可以参考String类equals()中的方法的实现。