Tagged Questions

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)

53
votes
17answers
2k 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 ...
52
votes
10answers
8k 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?
31
votes
4answers
461 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 = ...
17
votes
6answers
1k 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 ...
14
votes
4answers
807 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 ...
13
votes
7answers
524 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 ...
9
votes
5answers
1k 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 ...
8
votes
2answers
577 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 ...
6
votes
3answers
109 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 ...
6
votes
3answers
213 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 ...
6
votes
2answers
1k 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. Thanks!
5
votes
2answers
106 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 ...
5
votes
4answers
108 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, ...
4
votes
4answers
118 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 ...
4
votes
3answers
133 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 ...
4
votes
4answers
339 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
5answers
194 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 ...
3
votes
1answer
90 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
3answers
157 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
6answers
3k 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 ...
2
votes
1answer
35 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
1answer
58 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
1answer
61 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
39 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
192 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
1answer
216 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
476 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
321 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
1answer
29 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
74 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
0answers
40 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 ...
1
vote
2answers
169 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
1answer
151 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
107 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
3answers
103 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 ...
1
vote
0answers
109 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++.
1
vote
6answers
1k 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 { ...
0
votes
0answers
10 views

LSP: Access Violation when i try to read lpBuffers on WSPSend() And Categories

I am writing an LSP. Everything works fine. I need to read data sent by WSPSend. When I read it on x86 there are no problems but when I try to read it under x64 SPI, I am getting Access Violation ...
0
votes
1answer
62 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
1answer
49 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
75 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 ...
0
votes
1answer
39 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 ...
0
votes
0answers
28 views

LSP (layer Service Provider) question

How can I retrieve entire HTML contents from an URL request in WSPRecv function? Thank you!
0
votes
1answer
72 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. ...
0
votes
1answer
83 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 ...
0
votes
0answers
42 views

Unit testing Microsofts LSP api

Has anyone every written unit tests for Microsoft's LSP? If so, I would like to see some examples.
0
votes
3answers
475 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
2answers
103 views

System-wide Ad Blocker

I intend to build an Ad Blocker application that blocks ads on all browsers. Some Ad Blockers have plugins for each browser, but I think that's a lot of work and incompatibilities. I'm thinking on an ...
0
votes
3answers
127 views

Question about LSP (Liskov Substitution Principle) and subtypes

LSP says that if q(x) is a property provable about objects x of type T then q(y) should be true for objects y of type S where S is a subtype of T. I can rephrase it as follows: q(x) is ...
0
votes
0answers
34 views

How to get WSPSendTo data?

Hallo i need to intercept dns requests using LSP, how can i get these data? When system calls int WSPSendTo( __in SOCKET s, __in LPWSABUF lpBuffers, __in DWORD dwBufferCount, __out ...

1 2