The Liskov Substitution Principle (LSP) states that an instance of type T should be replacable with an instance of a subtype of T.

learn more… | top users | synonyms (3)

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?
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 ...
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 = ...
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.
61
votes
17answers
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 ...
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 ...
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 ...
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
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, ...
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
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 ...
0
votes
1answer
277 views

How to control shared internet connection (ICS - Internet Connection Sharing) using LSP/SPI?

I am trying to write an application for myself to learn things and to use in my own office. What I am trying to write is: I have two nics. First one is connected to internet and the other one is ...
0
votes
1answer
537 views

Is it possible to intercept dns queries using LSP/SPI?

I wrote my own LSP which is working fine. However, I can not catch dns queries. For example there is no function like WSPGetHostByName or WSPGetAddrInfo. My lsp also supports UDP protocol but it is ...