Tagged Questions
6
votes
1answer
252 views
Class usage pitfalls breaking Liskov Substitution Principle
In a project I worked recently, noticed that some methods that were accepting a class that belongs to a hierarchy, had code similar to following:
public void Process(Animal animal) {
...
0
votes
3answers
181 views
Question about LSP (Liskov Substitution Principle) and subtypes
LSP says that
if q(x) is a property provable about objects x of type T then q(y) should be true for objects y of type S where S is a subtype of T.
I can rephrase it as follows:
q(x) is ...
