Tagged Questions
-1
votes
6answers
187 views
How to comply with Liskov's Substitution Principle (LSP) and still benefit from polymorphism?
The LSP says "The derived types must not change the behavior of the base types", in other words "Derived types must be completely replaceable for their base types."
This means that if we define ...
1
vote
2answers
91 views
Are subclasses allowed to have public methods according to the Liskov substitution principle?
Consider the following class hierarchy:
Abstract class Printer{
public print(){
//code to handle printing
}
}
class LaserPrinter extends Printer{
private $file;
public ...
1
vote
2answers
317 views
Why declare an instance as a supertype but instantiate it as a subtype, plus Liskov Substitution Principle
I've been trying to understand the Liskov Substitution Principle for a couple of days now, and while doing some code tests with the very typical Rectangle/Square example, I created the code below, and ...
11
votes
3answers
6k views
Can you explain Liskov Substitution Principle with a good C# example?
Can you explain Liskov Substitution Principle (The 'L' of SOLID) with a good C# example covering all aspects of the principle in a simplified way? If it is really possible.
2
votes
1answer
286 views
Need help with .Net SOLID design
I'm trying to stick fast to Robert Martin's SOLID design principles for the first time, and I am not good at it.
In essence, I need a hierarchy of "Node" objects. Some nodes are NodeHosts, some are ...
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
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 ...
2
votes
2answers
655 views
SOLID Liskov Substitution Principle
if i have something like
class square : figure {}
class triangle : figure {}
does that mean that i should never ever use the square and triangle classes but only refer to figure ?
like never do ...