The Liskov Substitution Principle (LSP) states that an instance of type T should be replacable with an instance of a subtype of T.
115
votes
10answers
21k views
What is the Liskov Substitution Principle?
I have heard that the Liskov Substitution Principle (LSP) is a fundamental principle of object oriented design. What is it and what are some examples of its use?
61
votes
18answers
3k views
Any good examples of inheriting from a concrete class?
Background:
As a Java programmer, I extensively inherit (rather: implement) from interfaces, and sometimes I design abstract base classes. However, I have never really felt the need to subclass a ...
47
votes
4answers
3k views
Why array implements IList?
See the definition of System.Array class
public abstract class Array : IList, ...
Theoretically, I should be able to write this bit and be happy
int[] list = new int[] {};
IList iList = ...
23
votes
6answers
2k views
Is deriving square from rectangle a violation of Liskov's Substitution Principle?
I am new to design and learning the design principles.
It says deriving square from rectangle is a classic example of violation of Liskov's Substitution Principle.
If that's the case, what should be ...
19
votes
6answers
259 views
ReadOnlyCollection vs Liskov - How to correctly model immutable representations of a mutable collection
Liskov-substitution principle requires that subtypes must satisfy the contracts of super-types. In my understanding, this would entail that ReadOnlyCollection<T> violates Liskov. ...
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 ...
16
votes
7answers
1k views
Is the ReadOnlyCollection class a good example of Bad Design?
Look at the specification of the ReadOnlyCollection class, it does implements the IList interface, right.
The IList interface have Add/Update/Read methods, which we call it pre-conditions of the ...
16
votes
4answers
1k views
Layered Service Provider in C#
I'm looking to write a LSP in C# to capture and re-direct UDP packets..
I have little experience with LSP's but I've heard they can do this sort of thing, please correct me if I'm wrong, but is this ...
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.
11
votes
3answers
314 views
Should constructors comply with the Liskov Substitution Principle?
I usually try to make sure my object instances comply with the Liskov Substitution Principle, but I've always wondered is do people think LSP should apply to constructors too?
I've tried googling for ...
9
votes
2answers
691 views
Liskov Substition and Composition
Let say I have a class like this:
public sealed class Foo
{
public void Bar
{
// Do Bar Stuff
}
}
And I want to extend it to add something beyond what an extension method could ...
8
votes
3answers
592 views
Do abstract properties violate the Liskov substitution principle?
Suppose I have an abstract class like:
public abstract class Pet {
private final String name;
public Pet(String name) {
this.name = name
};
public abstract boolean ...
7
votes
2answers
516 views
How can I avoid breaking Liskov Substitution Principle (LSP)?
I am in a situation very similar to what Steve McConnell's in Code Complete has mentioned . Only that my problem is based of Vehicles and Trike happens to be on that by law falls in the category of ...
6
votes
4answers
289 views
Can I implement a series of reusable tests to test an interface's implementation?
I am writing a series of collection classes in C#, each of which implement similar custom interfaces. Is it possible to write a single collection of unit tests for an interface, and automatically run ...
6
votes
2answers
175 views
Hierarchy violates Liskov - so what?
I am using an API that violates the Liskov substitution principle : it throws its own Exception type that extends Exception, but puts the exception message from the base class in a new ErrorCode field ...
6
votes
1answer
253 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) {
...
6
votes
4answers
131 views
Type - Subtype relation. Something seems unclear
I'm reading some slides of a class on object oriented programming languages and stepped into the type-subtype definition:
Barbara Liskov, “Data Abstraction and Hierarchy,” SIGPLAN Notices,
23,5 (May, ...
6
votes
3answers
412 views
rationale behind Java's exception hierarchy
I find Java's exception hierarchy confusing. Throwable is divided into Error and Exception, and RuntimeException inherits from Exception.
Error is an unchecked exception. Why doesn't Error inherit ...
5
votes
4answers
238 views
Inheritance and LSP Question
Apologies in advance for a long-winded question. Feedback especially appreciated here . . .
In my work, we do a lot of things with date ranges (date periods, if you will). We need to take all sorts ...
5
votes
2answers
175 views
Does code comply with Liskov's substitution principle?
I'm testing my existing code on PHP5.4 prior to upgrade. I've discovered that the following code no longer works because PHP has tightened up its inheritance model. Due to this tightening, I've been ...
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 ...
4
votes
4answers
589 views
Does this violate the Liskov substitution principle, and if so, what do I do about it?
Use case: I'm using data templates to match a View to a ViewModel. Data templates work by inspecting the most derived type of the concrete type provided, and they don't look at what interfaces it ...
4
votes
6answers
4k views
C# Interface Implementation relationship is just “Can-Do” Relationship?
Today somebody told me that interface implementation in C# is just "Can-Do" relationship, not "Is-A" relationship. This conflicts with my long-time believing in LSP(Liskov Substitution Principle). I ...
4
votes
2answers
84 views
When “if else”/“instance of” are inevitable, how do we improve the design apart from using visitor pattern?
When we have an object hierarchy that is purely a inheritance of semantic and not of behaviors,then inevitably we need to write "instanceof" or "if/else" everywhere to do run time type checking.
E.g.
...
4
votes
2answers
97 views
If Address inherits from PhoneNumber, what OOP principle(s) does it violate?
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 ...
3
votes
1answer
81 views
Why do function pointers break substitutability and std::function doesn't?
We have an usual class hierarchy:
class B
{
public:
int x;
B() : x(0) {}
virtual ~B() {}
};
class D : public B
{
public:
int y;
D() : y(0) {}
};
And a function that takes one ...
3
votes
3answers
316 views
Is my lecturers definition of the Liskov Substitution Principle incorrect, or am I misunderstanding?
The following does work because of the (Liskov) substitution principle, which says that if a reference is expected of an instance of a certain class then you may substitute a reference to an instance ...
3
votes
1answer
143 views
Class inheritance: should constructors be compatible? case of multiple inheritance?
One of the recommended principles of object-oriented programming is the Liskov substitution principle: a subclass should behave in the same way as its base class(es) (warning: this is actually not a ...
3
votes
1answer
215 views
Liskov substitution principle - overriding method example
Lets say we have this really trivial classes:
class A
{
virtual int Function(int number)
{
return number;
}
}
class B : A
{
override int Function(int number)
{
...
2
votes
2answers
657 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 ...
2
votes
2answers
119 views
Is it a good practice to unit test the Liskov Substitution principle's compliance?
Assume a class named Sprinter:
public class Sprinter {
protected int travelMeters;
public void run(int seconds) {
this.travelMeters = 9 * seconds;
}
public int ...
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 ...
2
votes
2answers
110 views
Type safety with object-oriented methods
I'm trying to think of how to solve this problem correctly using object-oriented methods. The language isn't important—I would actually like to write code, but it's more the general principles I ...
2
votes
2answers
109 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 ...
2
votes
1answer
135 views
Linux OSI equivalent to Winsock2's LSP
I'm looking for Linux's OSI equivalent to Windows' winsock2 LSP.
In particular I would like to filter application layer protocols and traffic in linux.
Any information would greatly be appreciated.
2
votes
3answers
59 views
Stack, bounded stack and Liskov substitution property
Could a bounded stack data structure (a stack with an upper limit) be implemented as a subtype of a conventional stack without violating the Liskov substitution property?
A conventional stack could ...
2
votes
0answers
21 views
Can't weakening preconditions and strengthening postconditions also violate Liskov Substitution Principle?
Actual precondition of a subtype is created by combining ( using logical OR ) preconditions of a base type and preconditions of a subtype, which makes the resulting precondition less restrictive
...
2
votes
2answers
158 views
Understanding the relationship between Liskov and OCP
I am solidifying my understanding of the relationship between Liskov Substitutional Principal and Open Close Principal. If anybody could confirm my deductions and answer my questions below that would ...
2
votes
0answers
355 views
Communicating with a DLL
I have an LSP (Layered Service Provider) DLL, but once it's installed in the catalog, how to i communicate with it in my program? My LSP is based largely off of Microsoft's sample LSP.
I was reading ...
2
votes
2answers
376 views
Zend_Form and Liskov Substitution Principle
A very common pattern I see (I'm picking on Zend Framework, only because I was dealing with it at the moment of this question), is something like this:
class My_Form extends Zend_Form {
public ...
1
vote
6answers
3k views
Interface inheritance: what do you think of this: [closed]
When reviewing our codebase, I found an inheritance structure that resembles the following pattern:
interface IBase
{
void Method1();
void Method2();
}
interface IInterface2 : IBase
{
...
1
vote
2answers
153 views
GetType() and polymorphism [duplicate]
There are four public instance methods defined on object: ToString(), GetHashCode(), Equals(), and GetType(). Three of these methods are declared virtual, meaning that they can be overridden, and ...
1
vote
3answers
77 views
Is there a way to use the Delegation design pattern without losing substitutability in Java?
This question refers to the Delegation design pattern found here.
I have a number of interfaces for my game engine representing various entities:
Player
Vehicle
Mesh
etc.
and each one of these ...
1
vote
2answers
320 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 ...
1
vote
2answers
93 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
1answer
242 views
Get destination port in WSPSend
I am having a problem in getting the destination port number in the WSPSend function in the sample LSP provided with Microsoft platform SDK.
Here is the code that I am using. As shown below, the if ...
1
vote
1answer
175 views
Covariance and Contravariance with LSP
What is the relationship between LSP and Covariance and Contravariance?
Is there any relationship? Is LSP a form of Covariance ?
1
vote
1answer
154 views
Monopoly game - LSP OO principle
I'm designing a Monopoly game while also reading up more on OO principles. I was reading about the LSP (Liskov Substitution Principle) and found that either I'm not fully understanding it or am ...
1
vote
3answers
279 views
Can I violate LSP (Liskov substitution) in this case?
I have a model abstract class which declares a List of items. The abstract has two abstract class. One in which you can add new items to the list and one that doesn't use the list at all but adheres ...
1
vote
1answer
145 views
Does GWT's ActivityMapper violate the Liskov Substitution Principle?
In my GWT application, I have a class like so:
public class AppActivityMapper implements ActivityMapper {
@Override public Activity getActivity(Place place) {
if(place instanceof ...


