vote up 1 vote down star

What is difference between overloading and overriding.

flag
What was your answer? – Neil Butterworth Mar 23 at 15:02
@james: did you at least try google?? – Mitch Wheat Mar 23 at 15:02
I'm guessing you're not going to get this one. – Jon B Mar 23 at 15:09
james- probably not and I feel quite silly not being able to explain a simple concept – james Mar 23 at 15:26
@james my guess is you intuited these concepts without knowing the terms. I'm going to guess you're self-taught. You should probably pick up a beginner level C# book, not to learn but to reinforce what you already know. It's mind-numbing but will help immensely in tech interviews. – Michael Meadows Mar 23 at 15:44

3 Answers

vote up 15 vote down

Overloading

Overloading is when you have multiple methods in the same scope, with the same name but different signatures.

//Overloading
public class test
{
    public void getStuff(int id)
    {}
    public void getStuff(string name)
    {}
}

Overriding

Overriding is a principle that allows you to change the functionality of a method in a child class.

//Overriding
public class test
{
        public virtual getStuff(int id)
        {
            //Get stuff default location
        }
}

public class test2 : test
{
        public override getStuff(int id)
        {
            //base.getStuff(id);
            //or - Get stuff new location
        }
}
link|flag
vote up 2 vote down
  • Overloading = Multiple method signatures, same method name
  • Overriding = Same method signature (declared virtual), implemented in sub classes

An astute interviewer would have followed up with:

What's the difference between overriding and shadowing?

link|flag
Never knew it was called shadowing, good to know. The only relation overloading and overriding have is overing. – Samuel Mar 23 at 15:11
vote up 2 vote down

As Michael said:

  • Overloading = Multiple method signatures, same method name
  • Overriding = Same method signature (declared virtual), implemented in sub classes

and

  • Shadowing = If treated as DerivedClass it used derived method, if as BaseClass it uses base method.
link|flag

Your Answer

Get an OpenID
or

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