Wetts's blog

Stay Hungry, Stay Foolish.

0%

设计模式之禅-第2章-六大设计原则-里氏替换原则

里氏替换原则(Liskov Substitution Principle,简称LSP)

里氏替换原则有两种定义:

  • 第一种定义,也是正宗的定义:If for each object o1 of type S there is an object o2 of type T such that for all programs P defined in terms of T, the behavior of P is unchanged when o1 is substituted for o2 then S is a subtype of T.(如果对每一个类型为S的对象o1,都有类型为T的对象o2,使得以T定义的所有程序P在所有的对象o1都代换成o2时,程序P的行为没有发生变化,那么类型S是类型T的子类型。)
  • 第二种定义:Functions that use pointers or references to base classes must be able to use objects of derived classes without knowing it.(所有引用基类的地方必需能透明地使用其他其子类的对象。)

4层含义:

  1. 子类必须完全实现父类的方法
  2. 子类可以有自己的个性
  3. 覆盖或实现父类的方法时输入参数可以被放大
  4. 覆写或实现父类的方法时输出结果可以被缩小