[关闭]
@gnudennis 2015-04-23T22:00:47.000000Z 字数 4630 阅读 2018

Core Java笔记 2.继承

CoreJava


本章重点:

  • 继承
  • 多态与动态绑定
  • Object类
  • 对象包装器&自动打包

继承

涉及到的概念:
超类(superclass)、子类(subclass)
extends关键字
super关键字
多态(polymorphism)、动态绑定(dynamic binding)

重点:

  1. 如果子类的构造器没有显式调用超类的构造器,则自动调用超类默认构造器; 如果超类没有不带参数的构造器,并且子类的构造器中又没有显式地调用超类的其他构造器,则将报告错误.
  2. super关键字: 一是调用超类的方法,二是调用超类的构造器.
  3. polymorphism: 一个对象变量可以引用多种实际类型的现象.
  4. dynamic binding: 在运行时能够自动地选择调用哪个方法的现象. Java中dynamic binding是默认的处理方式, 除非用final标记.

继承层次

Java 不支持多继承. 采用 单继承+接口.


polymorphism & dynamic binding

polymorphism

多态示例:

  1. Employee e;
  2. e = new Employee(...); // Employee object expected
  3. e = new Manager(...); // OK, Manager can be used as well
  4. Employee[] staff = new Employee[3];
  5. Manager boss = new Manager(...);
  6. staff[0] = boss; // OK
  7. Manager m = staff[i]; // ERROR

WARN

  1. package corejava.inheritance;
  2. /**
  3. * Created by guolong.fan on 15/4/21.
  4. */
  5. public class ArrayStoreExceptionTest {
  6. public static void main(String[] args) {
  7. Integer[] ints = new Integer[10];
  8. ints[0] = 10;
  9. Object[] objs = ints; // OK!
  10. objs[0] = new Object();
  11. System.out.println(ints[0]);
  12. }
  13. } /**
  14. Exception in thread "main" java.lang.ArrayStoreException: java.lang.Object at corejava.inheritance.ArrayStoreExceptionTest.main(ArrayStoreExceptionTest.java:12)
  15. */

dynamic binding

调用对象方法的执行过程:

  1. 编译器查看对象的声明类型和方法名。比如方法f,编译器会一一列举类中及其超类中的所有访问权限为public且名为f的方法。
  2. 编译器查看调用方法时提供的参数类型,这个过程是overloading resolution。首先寻找参数完全匹配的方法,找到直接选择;次之,选择可以转化与之匹配的方法,没有的话,编译
    如果找到参数类型完全匹配,直接选择;次之,没有则选择可以转换与之匹配的方法;
  3. private、static、final方法,编译器可以准确地知道调用哪个方法,即静态绑定(static binding)。
  4. dynamic binding的原理是JVM预先给每个类创建了一个方法表(method table).

小细节:

  • Java SE5.0开始支持协变。

final类和 final方法

final类可以阻止继承,final方法不可override.

强制转换与 instanceof

强制转换:

  1. double x = 3.405;
  2. int nx = (int)x; // 1. OK
  3. Employee staff = new Manager(...);
  4. Manager boss = (Manager) staff; // 2. OK

继承链进行向下转换,Java运行时系统运行下面的程序,会产生ClassCastException异常.

  1. Employee staff = new Employee(...);
  2. Manager boss = (Manager) staff; // ERROR

总结:

  1. 只能在继承层次内进行类型转换,尽量避免强制转换.
  2. 如有必要,在将超类转换为子类前,应该使用instanceof进行检查.
  1. if (staff instanceof Manager) {
  2. boss = (Manager) staff;
  3. ...
  4. }

Object类

Object类是 Java 中所有类的最终祖先. 在 Java 中只有基本类型不是对象.

equals 方法

典型的equals方法的写法:

  1. // super class
  2. class Employee {
  3. ...
  4. @Override
  5. public boolean equals(Object otherObject) {
  6. // 1. a quick test to see if the objects are identical
  7. if (this == otherObject) return true;
  8. // 2. must return false if the explicit parameter is null
  9. if (otherObject == null) return false;
  10. // 3.1 if the classes don't match, they can't be equal
  11. if (getClass() != otherObject.getClass()) {
  12. return false;
  13. }
  14. // or 3.2 如果所有的子类都拥有统一的语义,则使用instanceof检测.
  15. if (!(otherObject instanceof ClassName)) return false;
  16. // 4. now we know otherObject is a non-null Employee
  17. Employee other = (Employee) otherObject;
  18. // 5. test whether the fields have identical values
  19. return name.equals(other.name)
  20. && salary == other.salary
  21. && hireDay.equals(other.hireDay);
  22. }
  23. }
  24. // sub class
  25. Class Manager extends Employee {
  26. ...
  27. @Override
  28. public boolean equals(Object otherObject) {
  29. if (!super.equals(otherObject)) return false;
  30. // super.equals checked that this and otherObject belong to the same class
  31. Manager other = (Manager) otherObject;
  32. // test whether the fields have identical values in subclass
  33. return bonus = other.bonus;
  34. }
  35. }

hashCode 方法

Object 类中的 hashCode 默认实现是对象的存储地址. 当一个类重新定义了 equals 方法时,就必须重新定义 hashCode 方法, 且 equals 与 hashCode 的定义必须保持一致.

  1. class Employee {
  2. public int hashCode() {
  3. return 7 * name.hashCode +
  4. 11 * new Double(salary).hashCode +
  5. 13 * hireDay.hashCode();
  6. }
  7. ...
  8. }

如果存在数组类型的域,可以使用静态的 Arrays.hashCode 计算 hash,这个散列码由数组元素的散列码组成.

toString 方法

典型写法:

  1. public class Employee {
  2. public String toString() {
  3. return getClass().getName()
  4. + "[name=" + name
  5. + ",salary=" + salary
  6. + ",hireDay=" + hireDay
  7. + "]";
  8. }
  9. ...
  10. }
  11. public Manager extends Employee {
  12. public String toString() {
  13. return super.toString()
  14. + "[bonus=" + bonus
  15. + "]";
  16. }
  17. }

x.toString()"" + x 等价. Object 类的 toString()className@hashCode.

  1. int[] luckyNumbers = {2, 3, 5, 7, 11, 13};
  2. String s = "" + luckyNumbers; // [I@hashCode
  3. // 打印单维数组
  4. String s = Arrays.toString(luckyNumbers); // "[2,3,5,7,11,13]"
  5. // 打印多维数组
  6. String s = Arrays.deepToString(luckyNumbers);

对象包装器&自动打包

  1. Java 的基本类型都有与之对应的包装器(wrapper).
  2. Wrapper 是 final 类,并且是不可变的(即一单生成对象,对象本身不可变).
  3. Java 泛型不支持 基本类型,可以使用 wrapper.
  4. autoboxing & autounboxing 是编译器行为,而不是 JVM. 编译器通过添加相关代码得以实现(new Integer(), Integer.intValue()).
  5. String->Integer(int x = Integer.parseInt(s));

下列情况不会发生 unboxing.

  1. Integer a = 1000;
  2. Integer b = 1000;
  3. if (a == b) ... // may equal, 自动打包要求 boolean、byte、char<=127, 介于-128~127的short和int被包装到固定的对象中.

因为 Java 中基本类型是不可变的,所以要求 wrapper 也是不可变的.

  1. public static void triple(int x) { // won't work
  2. x = 3 * x;
  3. }
  4. public static void triple(Integer x) { // won't work
  5. x = 3 * x; // 因为 Integer 对象是不可变的.
  6. }

Integer.parseInt 与 Integer.valueOf 的区别:

  1. public static int parseInt(java.lang.String s, int i) throws java.lang.NumberFormatException { /* compiled code */ }
  2. public static int parseInt(java.lang.String s) throws java.lang.NumberFormatException { /* compiled code */ }
  3. public static java.lang.Integer valueOf(java.lang.String s, int i) throws java.lang.NumberFormatException { /* compiled code */ }
  4. public static java.lang.Integer valueOf(java.lang.String s) throws java.lang.NumberFormatException { /* compiled code */ }

继承设计的技巧

  1. 将公共操作和域放在超类.
  2. 不要使用受保护的域.
  3. 使用继承实现 "is-a" relation.
  4. 除非所有继承的方法都有意义,否则不要使用继承.
  5. 在override时不要改变预期的行为.
  6. 使用多态, 而非类型信息(避免类型判断),是代码更加易于扩展.
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注