Tagged Questions
2
votes
2answers
108 views
Does Liskov Substitution Principle also apply to classes implementing an interface?
LSP states that classes should be substitutable for their base classes, meaning that derived and base classes should be semantically equivalent.
But does LSP also apply to classes implementing an ...
0
votes
1answer
149 views
Does using virtual methods violates LSP( L part of SOLID principles) or there are some exceptions?
Does using virtual methods violates LSP( L part of SOLID principles) or there are some exceptions?
Thanks in advance,
Saghar Ayyaz
5
votes
5answers
300 views
Does the Liskov Substitution Principle apply to subtype which inherited from abstract class?
loosely speaking, Liskov Substitution Principle states that a derived class can be substitute in place of the base class without affecting the user.
In the case when the base class is an abstract ...
17
votes
5answers
2k views
Liskov substitution principle - no overriding/virtual methods?
My understanding of the Liskov substitution principle is that some property of the base class that is true or some implemented behaviour of the base class, should be true for the derived class as ...