Tagged Questions
9
votes
5answers
1k 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 ...
4
votes
5answers
196 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 ...
0
votes
1answer
103 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