Whats the real life scenerio where we will use new to privide new implementation for a virtual method in the derived class? C#

I know what it means techinically. what I am looking for is a real life scenerio where this will be needed.

We can always achieve the same by providing the override funtionality. Why would we want to incorrect method been picked when mthos call is made casted to base.

link|improve this question
better discuss at programmers.stackexchange.com – Shamim Hafiz Jul 29 '11 at 6:32
feedback

2 Answers

No. You can't achieve the same.

// Define the base class
class Car
{
    public virtual void DescribeCar()
    {
        System.Console.WriteLine("Four wheels and an engine.");
    }
}

// Define the derived classes
class ConvertibleCar : Car
{
    public new virtual void DescribeCar()
    {
        base.DescribeCar();
        System.Console.WriteLine("A roof that opens up.");
    }
}

class Minivan : Car
{
    public override void DescribeCar()
    {
        base.DescribeCar();
        System.Console.WriteLine("Carries seven people.");
    }
}

Now, if you try to do this:

public static void TestCars2()
{
    Car[] cars = new Car[3];
    cars[0] = new Car();
    cars[1] = new ConvertibleCar();
    cars[2] = new Minivan();
}

The result will be:

Car object: YourApplication.Car

Four wheels and an engine.

----------

Car object: YourApplication.ConvertibleCar

Four wheels and an engine.

----------

Car object: YourApplication.Minivan

Four wheels and an engine.

Carries seven people.

----------

Override ALWAYS override while new ONLY does it when is used as its declared type (not base one).

You can see more here

link|improve this answer
I was looking for real life scenerio..and this one is for the book.. anyway..brittle base secenerio given by Jon answers it – ParvindS Aug 2 '11 at 8:28
feedback

No, you can't achieve the same by overriding:

  • Specifying a new method allows you to vary the return type
  • Calling the base method may not be incorrect

One example scenario:

  • You're using 3rd party library Foo, which contains a class FooBase
  • You write your own subclass of Foo, Bar
  • You introduce a public method in Bar called DoSomething
  • In the next version of Foo, the 3rd party introduces a DoSomething method in Foo which doesn't do the same as your method. This may or may not be virtual.

At this point, you want all your existing code calling Bar.DoSomething to still call Bar.DoSomething, but all the code which calls Foo.DoSomething should still call that implementation - those callers may not even know about your method, and they may be in the third party assembly.

In the long term in that situation you would probably want to rename your method if you can (depending on how much control you have over your callers) but in the short term, making your method as new achieves exactly the behaviour you want.

This sort of thing is sometimes known as the brittle base class problem. Eric Lippert has written about it reasonably extensively, including this post back in 2004.

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.