There was a book that talks about have a PhoneNumber class, and then we would define an Address class that inherits from PhoneNumber, and I said at one time, that we can't do that, because an address is not a phone number, and to inherit, it must be a "is a" relationship. Such as: a dog is an animal, and we we can make Dog inherit from Animal.
But since we have to follow LSP -- Liskov Substitution Principle, then the "is a" rule actually is not the determining factor here, because a square "is a" rectange (with width == height), but LSP says we can't define a Square class and inherit from the Rectangle class. The simple explanation in English, I think, is the object aRect can respond to the message setWidthAndHeight(w, h), but aSquare can't respond to it correctly and allow the whole program to run correctly.
So surprisingly, the Address class inheriting the PhoneNumber class violates the "is a" relationship, but it doesn't violate LSP. Then formally, what OOP principle(s) does it violate?
Addressmight have more than one reason to change if it inherits fromPhoneNumber, which violates the Single Responsibility Principle. Moreover, who said that SOLID were THE principles of OOP (consider GRASP, Law of Demeter, DRY, KISS). – RA. Feb 24 at 7:43wdoesn't equalh, you are strengthening the precondition in the subtype, and that's not allowed according to the rules about preconditions and postconditions (Another reference: p. 7 of this ObjectMentor article). – A. Rodas Feb 24 at 21:47