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)

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 ...
0
votes
1answer
282 views

If I want to develop Layered Service Provider to support all Windows OS's, what problems should I expect?

I want to develop simple HTTP filter (transparent proxy). I want it to support all versions of Windows including XP and above. From the folks that have experience with this, what problems should ...
1
vote
1answer
219 views

how custom route for a process?

In my computer, there are two network adapters, connecting to different subnet. As below: adapter A: 10.20.30.201 adapter B: 10.20.31.201 I want to make all outgoing data of a special process (for ...
0
votes
1answer
135 views

Aggregate class extending base class - Violation of LSP?

The Liskov Substitution Principle (LSP) on Wikipedia Say I have a Alien class with an numFingers attribute*. Occasionally, I need to pull the sum of the numFingers from the database, grouped by ...
0
votes
2answers
294 views

Firefox 4 Beta and Winsock LSP

I have a problem with Firefox 4 Beta. It seems that firefox somehow ignores all LSP providers installed. But it does use winsock. What's the problem? Is it my LSP problem and I can fix it or not?
0
votes
1answer
239 views

Where I can learn from scratch about windows Winsock LSP

I found only bits of information and not so for the beginners. I got the platform SDK example , I got the layered.zip from Microsoft , and got some article from the Microsoft web site (from 1999). ...
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.
0
votes
1answer
295 views

Socket change in LSP

Is it possible to change the destination socket (IP and port) of the outgoing packets using LSP (Layered Service Provider) in Windows? For example, I want to redirect all HTTP packets to a proxy ...
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 ...
0
votes
1answer
219 views

Debug LSP with dt_dll

Does anyone know how to debug the LSP sample provided with Microsoft platform SDK? I read about this topic and found that the sample dt_dll generate a DLL file that can be used with a checked version ...
0
votes
1answer
645 views

Unable to build LSP sample

I downloaded Microsoft platform SDK. I tried to build the sample project LSP under C:\Program Files\Microsoft Platform SDK\Samples\NetDS\WinSock\LSP I got the following linking errors: ...
4
votes
4answers
587 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 ...
0
votes
2answers
728 views

LSP (Layered Service Provider) OS comatability

Which operationg systems support LSP (Layered Service Provider). Interecting operating systems (Windows XP 32/64bit,Windows Vista 32/64bit, Windows 7 32/64bit, Windows Server 2008 32/64bit, Windows ...
0
votes
1answer
164 views

LSP software conflict with antivirus anti spyware etc programs?

Hello I write LSP program for reading and changing traffic. Questions is, do software like anti virus, firewall, anti spyware etc see my program as virus because LSP function?
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 ?
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 ...
1
vote
3answers
128 views

Liskov Substitution Principle and the directionality of the original statement

I came across the original statement of the Liskov Substitution Principle on Ward's wiki tonight: What is wanted here is something like the following substitution property: If for each object o1 ...
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
0
votes
1answer
153 views

How to develop something similar to LSP for Mac OSX

Microsoft provides the Layered Service Provider as part of Winsock 2 which makes it relatively easy to develop a user-mode network filter. I am looking to port an HTTP content filter LSP to Mac OSX, ...
1
vote
1answer
153 views

How to detect SSL handshake with LSP?

How can I detect that an application wants to establish ssl connection using LSP. I need to break that SSL handshake and detect the destination address and port. Is that possible? I am using vc++.
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 ...
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 ...
0
votes
1answer
386 views

Type parameter constraints for the liskov principle in C#.NET

I try to create a generic interface that inherits the System.ICloneable interface but where the returntype of the Clone()-method is T. Of course the T-type needs constraints to be sure it's an ...
0
votes
2answers
1k views

Why can't I use AddRange to add subclassed items?

I have two classes.... Parcel and FundParcel...and I'm trying to convert an IEnumerable of the subtype to an IList of the supertype.... public class FundParcel : Parcel { /* properties defined here ...
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 ...
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 ...
9
votes
2answers
688 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 ...
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 { ...
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 ...
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?

1 2