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)

-4
votes
1answer
29 views

Why does InflaterInputStream#available() violates Liskov Substitution Principle? [closed]

From Android Reference: Although consistent with the RI, this behavior is inconsistent with available(), and violates the Liskov Substitution Principle. This method should not be used. Why ...
11
votes
3answers
5k 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
0answers
18 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 ...
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 ...
0
votes
1answer
52 views

Unable to set WSPStartup as a dll export

I am trying to write a LSP for winsock and as per MSDN documentation the dll is supposed to export a single function viz. WSPStartup() as defined in Ws2spi.h While compiling I get an error: error ...
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 ...
0
votes
1answer
22 views

Avoiding LSP (Liskov Substitution Principles) violations

I'm currently reading the "Working Effectively with Legacy Code" by Michael Feathers and I think I understand about the LSP violations, but the thing is it says something about the rules of thumb ...
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
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++.
2
votes
2answers
108 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 ...
4
votes
2answers
96 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 ...
6
votes
1answer
252 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) { ...
-1
votes
6answers
186 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
3answers
74 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 ...
0
votes
2answers
726 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 ...
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 ...
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. ...
3
votes
1answer
213 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
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 ...
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
276 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 ...
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 ...
7
votes
2answers
505 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 ...
0
votes
1answer
84 views

How to ensure inheriting classes do not break base class contract in the context of LSP?

In C# - but it may be applicable to other languages - in the context of LSP, how can I ensure that a class inheriting from another (mutable) one will not break the original contract? For example: If ...
0
votes
1answer
147 views

Does Liskov Substitution Principle also apply to classes implementing interfaces?

1) Does LSP also apply to interfaces, meaning that we should be able to use a class implementing a specific interface and still get the expected behavior? 2) If that is indeed the case, then why is ...
0
votes
1answer
56 views

Does upcasting in subclasses break LSP?

I'm currently attempting to build a renderer for dynamic forms. At present I have two types of questions - a text question & a multiple choice question. Based on the question type I need to ...
0
votes
3answers
1k views

Building Microsoft's LSP sample code

Building with/ Using VS2010 Platform SDK (Microsoft Windows SDK v7.1) installed. When i try to build the Sample LSP (located in C:\Program Files\Microsoft Platform SDK\Samples\NetDS\WinSock\LSP) ...
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: ...
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
151 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 ...
0
votes
3answers
73 views

OO Design Modeling

How to model a domain when you have a base class and 2 classes extending this base class and only one of derived class has a relationship with another object. Example: public abstract class Base { ...
0
votes
2answers
70 views

Is narrowing of overriden method arguments types a Liskov Substitution Principle violation?

I have this code: abstract class Entity { // blah-blah-blah } abstract class BaseCollection { public void add(Entity entity); } And I derive from the Entity and BaseCollection classes: class ...
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 ?
6
votes
4answers
276 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 ...
1
vote
1answer
153 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 ...
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 ...
1
vote
3answers
273 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
144 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 ...
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?
1
vote
0answers
150 views

Understanding how a violation of the Liskov Substitution Principle is problematic from a business point of view [closed]

I am writing regarding the Liskov Substitution Principle and an example of violation of this principle published here (see http://javaboutique.internet.com/tutorials/JavaOO). The sample domain here ...
0
votes
1answer
58 views

Is it okay to break LSP for the sake of binding?

Something tells me I might get lynched for asking this. And sorry for the long winded description in advance. I'm working on something of a corner case in a Silverlight 4 project. Essentially what ...
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 ...
0
votes
1answer
217 views

display http blocking page from LSP with chrome

I have modified Microsoft's LSP (Winsosk Layered Service Provider) example to make web filter application for desktop. I am able to block access to websites by comparing host in http header to a list ...
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 ...
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
3answers
409 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 ...
0
votes
1answer
164 views

IPC between windows service and LSP DLL

I'm writing a Winsock LSP (Layered Service Provider) DLL that needs to communicate with a windows service. The communication is done using memory mapped files and events for synchronization. ...
2
votes
1answer
134 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.
5
votes
4answers
236 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 ...

1 2