回到顶部
您的当前位置: 编程语言> JAVA> JAVA基础> 基础语法
Java中的equals函数
2016-11-30 21:12:25
标签: 转载 Java equals
== 与 equals

==用于比较引用和比较基本数据类型时具有不同的功能:

  • 比较基本数据类型,如果两个值相同,则结果为true

  • 而在比较引用时,如果引用指向内存中的同一对象,结果为true

equals的本意,即在Object对象中定义的equals()方法有什么样的意义,equals()方法的本意为确定两个对象的引用是否相同。而JDK类中有一些类覆盖了oject类的equals()方法,比较规则为:如果两个对象的类型一致,并且内容一致,则返回true,这些类有: java.io.file,java.util.Date,java.lang.string,包装类(Integer,Double等)。

equals本意
/** jdk object中的方法 */
public boolean equals(Object obj) {
    return (this == obj);
}

/** 测试类 */
public class Fish {
    private int weight;
    private String color;
 
    public Fish(int weight, String color) {
        this.color = color;
        this.weight = weight;
    }
    public int getWeight() {
        return weight;
    }
    public void setWeight(int weight) {
        this.weight = weight;
    }
 
    public String getColor() {
        return color;
    }
    public void setColor(String color) {
        this.color = color;
    }
}

/** 测试 */
public class EqualsTest {
    public static void main(String[] args) {
        Fish f1 = new Fish(1, "blue");
        Fish f2 = new Fish(1, "blue");
 
        System.out.println(f1 == f2);
        System.out.println(f1.equals(f2));
    }
}

/** 测试结果 */
false
false

由此可见,equals()方法的本意为确定两个对象的引用是否相同。

equals覆写
/** jdk String中的方法,表明String中的equals已经被覆写 */
public boolean equals(Object anObject) {
    if (this == anObject) {
        return true;
    }
    if (anObject instanceof String) {
        String anotherString = (String)anObject;
        int n = value.length;
        if (n == anotherString.value.length) {
            char v1[] = value;
            char v2[] = anotherString.value;
            int i = 0;
            while (n-- != 0) {
                if (v1[i] != v2[i])
                    return false;
                i++;
            }
            return true;
        }
    }
    return false;
}

/** 测试String中的equals方法 */
public class EqualsTest {
    public static void main(String[] args) {
        String s1=new String("sss");
        String s2=new String("sss");
        
        // 运行结果false
        System.out.println(s1==s2);
        // 运行结果true
        System.out.println(s1.equals(s2));
    }
}

/** 覆写测试类 */
public class Fish {
    private int weight;
    private String color;
 
    public Fish(int weight, String color) {
        this.color = color;
        this.weight = weight;
    }
    
    @Override
    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime * result + ((color == null) ? 0 : color.hashCode());
        result = prime * result + weight;
        return result;
    }
    
    @Override
    public boolean equals(Object obj) {
        if (this == obj)
            return true;
        if (obj == null)
            return false;
        if (getClass() != obj.getClass())
            return false;
        Fish other = (Fish) obj;
        if (color == null) {
            if (other.color != null)
                return false;
        } else if (!color.equals(other.color))
            return false;
        if (weight != other.weight)
            return false;
        return true;
    }
    public int getWeight() {
        return weight;
    }
    public void setWeight(int weight) {
        this.weight = weight;
    }
    public String getColor() {
        return color;
    }
    public void setColor(String color) {
        this.color = color;
    }
}

/** 测试 */
public class EqualsTest {
    public static void main(String[] args) {
        Fish f1 = new Fish(1, "blue");
        Fish f2 = new Fish(1, "blue");
 
        System.out.println(f1 == f2);
        System.out.println(f1.equals(f2));
    }
}

/** 测试结果 */
false
true

原文中作者的话:

此例子中我复写了equals()方法和hashcode()方法,使得equals()方法脱离的本意,不再是比较两个对象的引用是否相同,而是比较其内容是否相同。

以上内容为一般书上的总结,下面是我自己想到的一些东西。

我们可以知道计算机归根到底进行的只是一些二进制数的与或非运算,加法乘法运算。由此有了些基本的运算符,所有的函数本质上其实现都是使用基本运算符来实现的。而==是基本运算符中的一个,它的作用:用于比较引用和比较基本数据类型时具有不同的功能:

比较基本数据类型,如果两个值相同,则结果为true

而在比较引用时,如果引用指向内存中的同一对象,结果为true

而equals()作为方法,我们可以推测知道,它其中的实现所使用的肯定是==运算符。再进一步的思考,equals()本意不正是==运算符进行对象比较时候的作用吗。那么,既然是两者有同样的作用,为什么还要弄出一个equals()方法来呢。因为==运算符不允许我们进行覆盖,也就是说它限制了我们的表达。在上面的第三个例子中,我们复写equals()方法,达到比较对象内容是否相同的目的。而这些通过==运算符是做不到的。