Object 类中的方法一览:

  1. public native int hashCode()
  2. public boolean equals(Object obj)
  3. protected native Object clone() throws CloneNotSupportedException
  4. public String toString()
  5. public final native Class<?> getClass()
  6. protected void finalize() throws Throwable {}
  7. public final native void notify()
  8. public final native void notifyAll()
  9. public final native void wait(long timeout) throws InterruptedException
  10. public final void wait(long timeout, int nanos) throws InterruptedException
  11. public final void wait() throws InterruptedException

*equals()

  1. 等价关系

    1. 自反性 x.equals(x); // true
    2. 对称性 x.equals(y) == y.equals(x); // true
    3. 传递性 if(x.equals(y) && y.equals(z)) x.equals(z); // true
    4. 一致性 多次调用 equals() 方法结果不变 x.equals(y) == x.equals(y); // true
    5. 与 null 的比较 对任何不是 null 的对象 x 调用 x.equals(null) 结果都为 false x.equals(null); // false
  2. 等价与相等

  • 对于基本类型,== 判断两个值是否相等,基本类型没有 equals() 方法。
  • 对于引用类型,== 判断两个变量是否引用同一个对象,而 equals() 判断引用的对象是否等价。
  1. Integer x = new Integer(1);
  2. Integer y = new Integer(1);
  3. System.out.println(x.equals(y)); // true
  4. System.out.println(x == y); // false
  1. 实现
  • 检查是否为同一个对象的引用,如果是直接返回 true;
  • 检查是否是同一个类型,如果不是,直接返回 false;
  • 将 Object 对象进行转型;
  • 判断每个关键域是否相等。
  1. public class EqualExample {
  2. private int x;
  3. private int y;
  4. private int z;
  5. public EqualExample(int x, int y, int z) {
  6. this.x = x;
  7. this.y = y;
  8. this.z = z;
  9. }
  10. @Override
  11. public boolean equals(Object o) {
  12. if (this == o) return true; //检查是否为同一个对象的引用,如果是直接返回 true;
  13. if (o == null || getClass() != o.getClass()){
  14. //检查是否是同一个类型,如果不是,直接返回 false
  15. return false;
  16. }
  17. // 将 Object 对象进行转型
  18. EqualExample that = (EqualExample) o;
  19. // 判断每个关键域是否相等。
  20. if (x != that.x) return false;
  21. if (y != that.y) return false;
  22. return z == that.z;
  23. }
  24. }

*hashCode()

hashCode() 返回散列值,而 equals() 是用来判断两个对象是否等价。 等价的两个对象散列值一定相同,但是散列值相同的两个对象不一定等价

在覆盖 equals() 方法时应当总是覆盖 hashCode() 方法,保证等价的两个对象散列值也相等

下面的代码中,新建了两个等价的对象,并将它们添加到 HashSet 中。 我们希望将这两个对象当成一样的,只在集合中添加一个对象,但是因为 EqualExample 没有实现 hasCode() 方法, 因此这两个对象的散列值是不同的,最终导致集合添加了两个等价的对象。

  1. EqualExample e1 = new EqualExample(1, 1, 1);
  2. EqualExample e2 = new EqualExample(1, 1, 1);
  3. System.out.println(e1.equals(e2)); // true
  4. HashSet<EqualExample> set = new HashSet<>();
  5. set.add(e1);
  6. set.add(e2);
  7. System.out.println(set.size()); // 2

理想的散列函数应当具有均匀性,即不相等的对象应当均匀分布到所有可能的散列值上。 这就要求了散列函数要把所有域的值都考虑进来。 可以将每个域都当成 R 进制的某一位,然后组成一个 R 进制的整数。 R 一般取 31,因为它是一个奇素数,如果是偶数的话,当出现乘法溢出,信息就会丢失,因为与 2 相乘相当于向左移一位。

一个数与 31 相乘可以转换成移位和减法:31*x == (x<<5)-x,编译器会自动进行这个优化。

  1. @Override
  2. public int hashCode() {
  3. int result = 17;
  4. result = 31 * result + x;
  5. result = 31 * result + y;
  6. result = 31 * result + z;
  7. return result;
  8. }

了解:IDEA中 Alt+Insert 快捷键就可以快速生成 hashCode() 和 equals() 方法。

toString()

默认返回 ToStringExample@4554617c 这种形式,其中 @ 后面的数值为散列码的无符号十六进制表示。

  1. public class ToStringExample {
  2. private int number;
  3. public ToStringExample(int number) {
  4. this.number = number;
  5. }
  6. }
  7. ToStringExample example = new ToStringExample(123);
  8. System.out.println(example.toString());//输出结果:ToStringExample@4554617c

clone()

clone() 是 Object 的 protected 方法,属于浅拷贝

1. Cloneable

clone() 是 Object 的 protected 方法,它不是 public,一个类不显式去重写 clone(),其它类就不能直接去调用该类实例的 clone() 方法。

  1. public class CloneExample {
  2. private int a;
  3. private int b;
  4. }
  5. CloneExample e1 = new CloneExample();
  6. // CloneExample e2 = e1.clone();
  7. // 'clone()' has protected access in 'java.lang.Object'

重写 clone() 得到以下实现:

  1. public class CloneExample {
  2. private int a;
  3. private int b;
  4. // CloneExample 默认继承 Object
  5. @Override
  6. public CloneExample clone() throws CloneNotSupportedException {
  7. return (CloneExample)super.clone();
  8. }
  9. }
  10. CloneExample e1 = new CloneExample();
  11. try {
  12. CloneExample e2 = e1.clone();
  13. } catch (CloneNotSupportedException e) {
  14. e.printStackTrace();
  15. }
  16. java.lang.CloneNotSupportedException: CloneExample

以上抛出了 CloneNotSupportedException,这是因为 CloneExample 没有实现 Cloneable 接口。

应该注意的是,clone() 方法并不是 Cloneable 接口的方法,而是 Object 的一个 protected 方法

Cloneable 接口只是规定,如果一个类没有实现 Cloneable 接口又调用了 clone() 方法,就会抛出 CloneNotSupportedException

  1. public class CloneExample implements Cloneable {
  2. private int a;
  3. private int b;
  4. @Override
  5. public Object clone() throws CloneNotSupportedException {
  6. return super.clone();
  7. }
  8. }

2. 浅拷贝

  • 拷贝对象和原始对象的引用类型引用同一个对象。
  • 被复制对象的所有变量都含有与原来的对象相同的值,而所有的对其他对象的引用仍然指向原来的对象。即对象的浅拷贝会对“主”对象进行拷贝,但不会复制主对象里面的对象。”里面的对象“会在原来的对象和它的副本之间共享。
  • 浅拷贝仅仅复制所考虑的对象,而不复制它所引用的对象。
  1. public class ShallowCloneExample implements Cloneable {
  2. private int[] arr;
  3. public ShallowCloneExample() {
  4. arr = new int[10];
  5. for (int i = 0; i < arr.length; i++) {
  6. arr[i] = i;
  7. }
  8. }
  9. public void set(int index, int value) {
  10. arr[index] = value;
  11. }
  12. public int get(int index) {
  13. return arr[index];
  14. }
  15. @Override
  16. protected ShallowCloneExample clone() throws CloneNotSupportedException {
  17. return (ShallowCloneExample) super.clone();
  18. }
  19. }
  20. // 拷贝对象和原始对象的引用类型引用同一个对象。
  21. ShallowCloneExample e1 = new ShallowCloneExample();
  22. ShallowCloneExample e2 = null;
  23. try {
  24. e2 = e1.clone();
  25. } catch (CloneNotSupportedException e) {
  26. e.printStackTrace();
  27. }
  28. e1.set(2, 222);
  29. System.out.println(e1.get(2)); // 222
  30. System.out.println(e2.get(2)); // 222

3. 深拷贝

  • 拷贝对象和原始对象的引用类型引用不同对象。
  • 深拷贝是一个整个独立的对象拷贝,深拷贝会拷贝所有的属性,并拷贝属性指向的动态分配的内存。当对象和它所引用的对象一起拷贝时即发生深拷贝。深拷贝相比于浅拷贝速度较慢并且花销较大。
  • 深拷贝把要复制的对象所引用的对象都复制了一遍。
  1. public class DeepCloneExample implements Cloneable {
  2. private int[] arr;
  3. public DeepCloneExample() {
  4. arr = new int[10];
  5. for (int i = 0; i < arr.length; i++) {
  6. arr[i] = i;
  7. }
  8. }
  9. public void set(int index, int value) {
  10. arr[index] = value;
  11. }
  12. public int get(int index) {
  13. return arr[index];
  14. }
  15. @Override
  16. protected DeepCloneExample clone() throws CloneNotSupportedException {
  17. DeepCloneExample result = (DeepCloneExample) super.clone();
  18. // 创建新对象
  19. result.arr = new int[arr.length];
  20. for (int i = 0; i < arr.length; i++) {
  21. result.arr[i] = arr[i];
  22. }
  23. return result;
  24. }
  25. }
  26. DeepCloneExample e1 = new DeepCloneExample();
  27. DeepCloneExample e2 = null;
  28. try {
  29. e2 = e1.clone();
  30. } catch (CloneNotSupportedException e) {
  31. e.printStackTrace();
  32. }
  33. e1.set(2, 222);
  34. System.out.println(e1.get(2)); // 222
  35. System.out.println(e2.get(2)); // 2

4. clone() 的替代方案

使用 clone() 方法来拷贝一个对象即复杂又有风险,它会抛出异常,并且还需要类型转换。 Effective Java 书上讲到,最好不要去使用 clone(),可以使用拷贝构造函数或者拷贝工厂来拷贝一个对象

  1. public class CloneConstructorExample {
  2. private int[] arr;
  3. public CloneConstructorExample() { //构造函数
  4. arr = new int[10];
  5. for (int i = 0; i < arr.length; i++) {
  6. arr[i] = i;
  7. }
  8. }
  9. public CloneConstructorExample(CloneConstructorExample original) { // 拷贝构造函数
  10. arr = new int[original.arr.length];
  11. for (int i = 0; i < original.arr.length; i++) {
  12. arr[i] = original.arr[i];
  13. }
  14. }
  15. public void set(int index, int value) {
  16. arr[index] = value;
  17. }
  18. public int get(int index) {
  19. return arr[index];
  20. }
  21. }
  22. CloneConstructorExample e1 = new CloneConstructorExample();
  23. CloneConstructorExample e2 = new CloneConstructorExample(e1);
  24. e1.set(2, 222);
  25. System.out.println(e1.get(2)); // 222
  26. System.out.println(e2.get(2)); // 2