Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between shadowing and overriding in C#?

Tags:

c#

What's difference between shadowing and overriding a method in C#?

like image 458
Jox Avatar asked Dec 25 '08 10:12

Jox


People also ask

What is shadowing in C hash?

Shadowing is also known as method hiding. The method of the parent class is available to the child class without using the override keyword in shadowing. The child class has its own version of the same function. Use the new keyword to perform shadowing and to create the own version of the base class function.

What is method hiding and shadowing?

C# also provides a concept to hide the methods of the base class from derived class, this concept is known as Method Hiding. It is also known as Method Shadowing. In method hiding, you can hide the implementation of the methods of a base class from the derived class using the new keyword.

What is the difference between overriding and method hiding?

In method overriding, when base class reference variable pointing to the object of the derived class, then it will call the overridden method in the derived class. In the method hiding, when base class reference variable pointing to the object of the derived class, then it will call the hidden method in the base class.

Which keyword is used to shadowing in C#?

In C#, Shadowing is known as Hiding. It hides the derived class method. It is accomplished using the 'new' keyword. Override keyword is used to provide a completely new implementation of a base class method (which is marked 'Virtual') in the derived class.


2 Answers

Well inheritance...

suppose you have this classes:

class A {    public int Foo(){ return 5;}    public virtual int Bar(){return 5;} } class B : A{    public new int Foo() { return 1;}     //shadow    public override int Bar() {return 1;} //override } 

then when you call this:

A clA = new A(); B clB = new B();  Console.WriteLine(clA.Foo()); // output 5 Console.WriteLine(clA.Bar()); // output 5 Console.WriteLine(clB.Foo()); // output 1 Console.WriteLine(clB.Bar()); // output 1  //now let's cast B to an A class Console.WriteLine(((A)clB).Foo()); // output 5 <<<-- shadow Console.WriteLine(((A)clB).Bar()); // output 1 

Suppose you have a base class and you use the base class in all your code instead of the inherited classes, and you use shadow, it will return the values the base class returns instead of following the inheritance tree of the real type of the object.

Run code here

Hope I'm making sense :)

like image 139
Stormenet Avatar answered Oct 10 '22 19:10

Stormenet


Shadowing is actually VB parlance for what we would refer to as hiding in C#.

Often hiding (shadowing in VB) and overriding are shown as in answer by Stormenet.

A virtual method is shown to be overridden by a sub-class and calls to that method even on the super-class type or from inside code of the super-class will call the replacement implementation from the sub-class.

Then a concrete method is shown (one not marked as virtual or abstract) being hidden by using the new keyword when defining a method with an identical signature on the sub-class. In this case when the method is called on the super-class type the original implementation is used, the new implementation is only available on the sub-class.

However what is often missed is that it is also possible to hide a virtual method.

class A {     public virtual void DoStuff() { // original implementation } }  class B : A {     public new void DoStuff() {  //new implementation } }  B b = new B(); A a = b;  b.DoStuff(); //calls new implementation a.DoStuff(); //calls original implementation. 

Note in the above example DoStuff becomes concrete and can not be overriden. However it is also possible to use both the virtual and new keywords together.

class A {     public virtual void DoStuff() { // original implementation } }  class B : A {     public new virtual void DoStuff() {  //new implementation } }  class C : B {     public override void DoStuff() { //replacement implementation } }  C c = new C(); B b = c; A a = b;  c.DoStuff(); //calls replacement implementation b.DoStuff(); //calls replacement implementation a.DoStuff(); //calls original implementation. 

Note that despite all the methods involved being virtual, the override on C does not affect the virtual method on A because of the use of new in B hides the A implementation.

Edit: Its been noted in the comments to this answer that the above may be dangerous or at least not particularly useful. I would say yes it can be dangerous and would be out there if it were at all useful.

In particular you could get into all sorts of trouble if you also change the accessability modifiers. For example:-

public class Foo {     internal Foo() { }     protected virtual string Thing() { return "foo"; } }  public class Bar : Foo {  internal new string Thing() { return "bar"; } } 

To an external inheritor of Bar, Foo's implementation of Thing() remains accesible and overridable. All legal and explainable according to .NET type rules neverless quite unintuative.

I've posted this answer to deepen an understanding of how things work not as a suggestion of techniques that can be used freely.

like image 39
AnthonyWJones Avatar answered Oct 10 '22 17:10

AnthonyWJones