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!

link|improve this question

68% accept rate
feedback

4 Answers

up vote 20 down vote accepted

LSP says that you should always be able to use a base class or interface instead of the actual implementation and still get the expected result. If you can't, your breaking LSP.

An example:

public interface IDuck
{
   void Swim();
}
public class Duck : IDuck
{
   public void Swim()
   {
      //do something to swim
   }
}
public class ElectricDuck : IDuck
{
   public void Swim()
   {
      if (!IsTurnedOn)
        return;

      //swim logic  
   }
}

And the calling code

void MakeDuckSwim(IDuck duck)
{
    duck.Swim();
}

As you can see, there are two examples of ducks. One regular duck and one electric duck. The electric duck can only swim if it's turned on. This breaks the LSP principle since it must be turned on to be able to swim (the MakeDuckSwim method will not work if a duck is electric and not turned on).

You can of course solve it by doing something like this

void MakeDuckSwim(IDuck duck)
{
    if (duck is ElectricDuck)
        ((ElectricDuck)duck).TurnOn();
    duck.Swim();
}

But that would break Open/Closed principle and has to be implemented everywhere (and thefore still generate instable code).

The proper solution would be to automatically turn on the duck in the Swim method and by doing so make the electric duck behave exactly as defined by the IDuck interface

Update

Someone added a comment and removed it. It had a valid point that I'd like to address:

The solution with turning on the duck inside the Swim method can have side effects when working with the actual implementation (ElectricDuck). But that can be solved by using a explicit interface implementation. imho it's more likely that you get problems by NOT turning it on in Swim since it's expected that it will swim when using the IDuck interface

Update 2

Rephrased some parts to make it more clear.

link|improve this answer
@jgauffin: Example is simple and clear. But the solution you propose, first: breaks the Open-Closed Principle and it does not fit to Uncle Bob's definition (see the conclusion part of his article) which writes:"The Liskov Substitution Principle (A.K.A Design by Contract) is an important feature of all programs that conform to the Open-Closed principle." see:objectmentor.com/resources/articles/lsp.pdf – pencilCake Dec 13 '10 at 12:46
I don't see how the solution breaks Open/Closed. Read my answer again if you are referring to the if duck is ElectricDuck part. I had a seminar about SOLID last Thursday :) – jgauffin Dec 13 '10 at 12:48
1  
@jgauffin:Please correct me if I am thinking wrongly; but when you do such a type check and if there is some new feature is added to our electric duck which would need to be completed before TurnOn() call (Like InflateTheDuck() ) then it means you have to modify MakeDuckSwim(IDuck duck) method as well. So you do not only extend your electric duck but you also modify MakeDuckSwim method. To me it sounds like a possible break of Open/Closed Principle. – pencilCake Dec 13 '10 at 12:55
Read my answer again. I added the modification as an possible solution and explained why it's not a good idea to modify MakeDuckSwim. I also told how I would do (modify ElectricDuck.Swim) – jgauffin Dec 13 '10 at 13:03
@jgauffin:OK. I have not seen your update, thanks. – pencilCake Dec 13 '10 at 13:07
show 4 more comments
feedback

How about this?

link|improve this answer
That isn't in C# as the OP requested. – TigerShark Aug 22 '11 at 10:59
feedback
public interface IDuck
{
    bool IsTurnedOn { get; set; }
    void Swim();
    void MakeDuckSwim();
}

public class Duck : IDuck
{
    public bool IsTurnedOn
    {
        get { return true; }
        set { value = true; }
    }

    public void Swim()
    {
        //do something to swim
    }
    private void TurnOn() 
    {
        //do nothing already on
    }
    public void MakeDuckSwim() 
    {
        Swim();
    }
}
public class ElectricDuck : IDuck
{
    public bool IsTurnedOn {get; set;}

    public void Swim()
    {
        if (!IsTurnedOn)
            TurnOn();

        //swim logic  
    }
    private void TurnOn()
    {
        IsTurnedOn = true;
    }
    public void MakeDuckSwim() 
    {
        if (!IsTurnedOn)
            TurnOn();

        Swim();
    }       
}


Then this will always work, follows all SOLID principles:

duck.MakeDuckSwim();    
link|improve this answer
1  
A real duck which is turned on behaves very different compared to an electric duck which is turned on. And it can get really ugly when the real duck finds a mate which also is turned on. – jgauffin Mar 23 at 12:33
feedback

Great article, thanks! My question, can i do next inheritance, that, in my opinion, not violates LSP?

public interface IBird
{
    int MovingDistance();
}

public abstract class IFlyingBird : IBird
{
    public abstract int FlyingDistance();

    public int MovingDistance()
    {
        return FlyingDistance();
    }
}

public abstract class INotFlyingBird : IBird
{
    public abstract int SteppingDistance();

    public int MovingDistance()
    {
        return SteppingDistance();
    }
}

public class KingFisher : IFlyingBird
{
    public override int FlyingDistance()
    {
        return 600;
    }
}

public class Ostrich : INotFlyingBird
{
    public override int SteppingDistance()
    {
        return 123;
    }
}

usage:

class Program
{
    static void Main(string[] args)
    {
        IBird[] birds = new IBird[2];

        birds[0] = new KingFisher();
        birds[1] = new Ostrich();

        DoFlyBirds(birds);
    }

    private static void DoFlyBirds(IBird[] birds)
    {
        foreach (IBird b in birds)
        {
            Console.WriteLine("Bird {0} can overcome {1} kilometers", b.GetType().Name,  b.MovingDistance());
        }
    }
}

Thanks

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.