Liskov Substitution Principle - A Typical Violation

A Typical Violation

Further information: Circle-ellipse problem

A typical example that violates LSP is a Square class that derives from a Rectangle class, assuming getter and setter methods exist for both width and height. The Square class always assumes that the width is equal with the height. If a Square object is used in a context where a Rectangle is expected, unexpected behavior may occur because the dimensions of a Square cannot (or rather should not) be modified independently. This problem cannot be easily fixed: if we can modify the setter methods in the Square class so that they preserve the Square invariant (i.e., keep the dimensions equal), then these methods will weaken (violate) the postconditions for the Rectangle setters, which state that dimensions can be modified independently. Violations of LSP, like this one, may or may not be a problem in practice, depending on the postconditions or invariants that are actually expected by the code that uses classes violating LSP. Mutability is a key issue here. If Square and Rectangle had only getter methods (i.e., they were immutable objects), then no violation of LSP could occur.

Read more about this topic:  Liskov Substitution Principle

Famous quotes containing the words typical and/or violation:

    New York is the meeting place of the peoples, the only city where you can hardly find a typical American.
    Djuna Barnes (1892–1982)

    Injustice, cruelty, restraint of conscience, oppression, falsity, dishonour, deceit, violation of law and equity?—But look how they have cleaned up the cities and what wonderful roads they have built!
    Johan Huizinga (1872–1945)