I have heard that the Liskov Substitution Principle (LSP) is a fundamental principle of object oriented design. What is it and what are some examples of its use?
|
|
The Liskov Substitution Principle (LSP) is a concept in Object Oriented Programming that states:
At its heart LSP is about interfaces and contracts as well as how to decided when to extend a class vs. use another strategy such as composition to achieve your goal. The most effective way I have seen to illustrate this point was in Head First OOA&D. They present a scenario where you are a developer on a project to build a framework for strategy games. They present a class that represents a board that looks like this:
All of the methods take X and Y coordinates as parameters to locate the tile position in the two dimensional array of Tiles. This will allow a game developer to manage units in the board during the course of the game. The book goes on to change the requirements to say that the game frame work must also support 3d game boards to accommodate games that have flight. So a ThreeDBoard class is introduced that extends Board. At first glace this seems like a good decision. Board provides both the Height and Width properties and ThreeDBoard provides the Z axis. Where it breaks down is when you look at all the other members inherited from Board. The methods for AddUnit, GetTile, GetUnits and so on, all take both X and Y parameters in the Board class but the ThreeDBoard needs a Z parameter as well. So you must implement those methods again with a Z parameter. The Z parameter has no context to the Board class and the inherited methods from the Board class lose their meaning. A unit of code attempting to use the ThreeDBoard class as it's base class Board would be very out of luck. Maybe we should find another approach. Instead of extending Board, ThreeDBoard should be composed of Board objects. One Board object per unit of the Z axis. This allows us to use good object oriented principles like encapsulation and reuse and doesn't violate LSP. |
|||||||
|
|
A great example illustrating LSP (given by Uncle Bob in a podcast I heard recently) was how sometimes something that sounds right in natural language doesn't quite work in code. In mathematics, a Square is a Rectangle. Indeed it is a specialization of a rectangle. The "is a" makes you want to model this with inheritance. However if in code you made Square derive from Rectangle, then a Square should be usable anywhere you expect a rectangle. This makes for some strange behavior. Imagine you had SetWidth and SetHeight methods on your Rectangle base class; this seems perfectly logical. However if your Rectangle reference pointed to a Square, then SetWidth and SetHeight doesn't make sense because setting one would change the other to match it. In this case Square fails the Liskov Substitution Test with Rectangle and the abstraction of having Square inherit from Rectangle is a bad one.
Y'all should check out the other priceless SOLID Principles Motivational Posters. |
|||||||||||||||||||
|
|
LSP concerns invariants. Your board example is broken at the outset because the interfaces simply don't match. A better example would be the following (implementations omitted):
Now we have a problem although the interface matches. The reason is that we have violated (implied) invariants. The way getters and setters work, a
However, this invariant must be violated by a correct implementation of |
|||||||||||||||||
|
|
LSP is necessary where some code thinks it is calling the methods of a type For example, this occurs where a function with an input parameter of type
LSP requires the expectations (i.e. invariants) for methods of type
Even a type with immutable fields still has invariants, e.g. the immutable Rectangle setters expect dimensions to be independently modified, but the immutable Square setters violate this expectation.
LSP requires that each method of the subtype Contravariant means the variance is contrary to the direction of the inheritance, i.e. the type Covariance means the variance is in the same direction of the inheritance, i.e. the type This is because if the caller thinks it has a type Additionally, for each input parameter that has a function type, the variance roles are reversed, i.e. each of its input parameters must be covariant and its output must be contravariant. This rule is not applied recursively. Additionally, for languages (e.g. Scala) which have definition-site variance annotations on type parameters (i.e. generics), the direction (i.e. co- or contra-) of the variance annotation for each type parameter(s) of subtype Subtyping is appropriate where the invariants can be enumerated. There is much ongoing research on how to model invariants, so that they are enforced by the compiler. Typestate (see page 3) declares and enforces state invariants orthogonal to type. Alternatively, invariants can be enforced by converting assertions to types. For example, to assert that a file is open before closing it, then File.open() could return an OpenFile type, which contains a close() method that is not available in File. A tic-tac-toe API can be another example of employing typing to enforce invariants at compile-time. The type system may even be Turing-complete, e.g. Scala. Dependently-typed languages and theorem provers formalize the models of higher-order typing. Because of the need for semantics to abstract over extension, I expect that employing typing to model invariants, i.e. unified higher-order denotational semantics, is superior to the Typestate. ‘Extension’ means the unbounded, permuted composition of uncoordinated, modular development. Because it seems to me to be the antithesis of unification and thus degrees-of-freedom, to have two mutually-dependent models (e.g. types and Typestate) for expressing the shared semantics, which can't be unified with each other for extensible composition. For example, Expression Problem-like extension was unified in the subtyping, function overloading, and parametric typing domains. My theoretical position is that for knowledge to exist (see section “Centralization is blind and unfit”), there will never be a general model that can enforce 100% coverage of all possible invariants in a Turing-complete computer language. For knowledge to exist, unexpected possibilities much exist, i.e. disorder and entropy must always be increasing. This is the entropic force. To prove all possible computations of a potential extension, is to compute a priori all possible extension. This is why the Halting Theorem exists, i.e. it is undecidable whether every possible program in a Turing-complete programming language terminates. It can be proven that some specific program terminates (one which all possibilities have been defined and computed). But it is impossible to prove that all possible extension of that program terminates, unless the possibilities for extension of that program is not Turing complete (e.g. via dependent-typing). Since the fundamental requirement for Turing-completeness is unbounded recursion, it is intuitive to understand how Gödel's incompleteness theorems and Russell's paradox apply to extension. An interpretation of these theorems incorporates them in a generalized conceptual understanding of the entropic force:
|
||||
|
|
|
Strangely, no one has posted the original paper that described lsp. It is not an easy read as Robert Martin's one, but worth it. |
|||
|
|
|
The LSP is a rule about the contract of the clases: if a base class satisfies a contract, then by the LSP derived classes must also satisfy that contract. In Pseudo-python
satisfies LSP if every time you call Foo on a Derived object, it gives exactly the same results as calling Foo on a Base object, as long as arg is the same. |
|||||||||||||
|
When I first read about LSP, I assumed that this was meant in a very strict sense, essentially equating it to interface implementation and type-safe casting. Which would mean that LSP is either ensured or not by the language itself. For example, in this strict sense, ThreeDBoard is certainly substitutable for Board, as far as the compiler is concerned. After reading up more on the concept though I found that LSP is generally interpreted more broadly than that. In short, what it means for client code to "know" that the object behind the pointer is of a derived type rather than the pointer type is not restricted to type-safety. Adherence to LSP is also testable through probing the objects actual behavior. That is, examining the impact of an object's state and method arguments on the results of the method calls, or the types of exceptions thrown from the object. Going back to the example again, in theory the Board methods can be made to work just fine on ThreeDBoard. In practice however, it will be very difficult to prevent differences in behavior that client may not handle properly, without hobbling the functionality that ThreeDBoard is intended to add. With this knowledge in hand, evaluating LSP adherence can be a great tool in determining when composition is the more appropriate mechanism for extending existing functionality, rather than inheritance. |
||||
|
|
|
Would implementing ThreeDBoard in terms of an array of Board be that useful? Perhaps you may want to treat slices of ThreeDBoard in various planes as a Board. In that case you may want to abstract out an interface (or abstract class) for Board to allow for multiple implementations. In terms of external interface, you might want to factor out a Board interface for both TwoDBoard and ThreeDBoard (although none of the above methods fit). |
|||
|
|
This formulation of the LSP is way too strong:
Which basically means that S is another, completely encapsulated implementation of the exact same thing as T. And I could be bold and decide that performance is part of the behavior of P... So, basically, any use of late-binding violates the LSP. It's the whole point of OO to to obtain a different behavior when we substitute an object of one kind for one of another kind! The formulation cited by wikipedia is better since the property depends on the context and does not necessarily include the whole behavior of the program. |
|||||||||
|
|
An important example of the use of LSP is in software testing. If I have a class A that is an LSP-compliant subclass of B, then I can reuse the test suite of B to test A. To fully test subclass A, I probably need to add a few more test cases, but at the minimum I can reuse all of superclass B's test cases. A way to realize is this by building what McGregor calls a "Parallel hierarchy for testing": My Note that reusing the super-test suite for all subclass implementations is in fact a way to test that these subclass implementations are LSP-compliant. Thus, one can also argue that one should run the superclass test suite in the context of any subclass. See also the answer to the Stackoverflow question "Can I implement a series of reusable tests to test an interface's implementation?" |
|||
|
|
