I'm using C#. I have two classes A and B. B inherits from A. They both have a Foo() method (which is virtual in A). Now, if I have
A b = new B();
int x = b.Foo();
then Foo() from A is called. But if Foo() in B has the 'new' keyword, then again the Foo() from the base class is called. Then, why would I use shadowing?
Using
new
means exactly that: don't override.The only effect of
new
is to suppress the compiler warning about hiding a base-member. It will never cause a different method to be called.