Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the difference between overloading and overriding.

share|improve this question
What was your answer? – anon Mar 23 '09 at 15:02
@james: did you at least try google?? – Mitch Wheat Mar 23 '09 at 15:02
I'm guessing you're not going to get this one. – Jon B Mar 23 '09 at 15:09
james- probably not and I feel quite silly not being able to explain a simple concept – james Mar 23 '09 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 '09 at 15:44
show 1 more comment

6 Answers

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
        }
}
share|improve this answer
  • 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?

share|improve this answer
Never knew it was called shadowing, good to know. The only relation overloading and overriding have is overing. – Samuel Mar 23 '09 at 15:11

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.
share|improve this answer

shadowing = maintains two definitions at derived class and in order to project the base class definition it shadowes(hides)derived class definition and vice versa.

share|improve this answer

Method overloading and Method overriding are 2 different concepts completely different. Method overloading is having the same method name but with different signatures. Method overriding is changing the default implementation of base class method in the derived class. Below you can find 2 excellent video tutorials explaining these concepts.

Method overriding Vs hiding

Method overloading

share|improve this answer

Simple definitions for overloading and overriding

Overloading (Compile Time Polymorphism):: Functions with same name and different parameters

 Ex:: Class A
         {
              void print(int x, int y)
              {
                   System.out.println("Parent Method");
              }
         }
         Class B extends Class A
         {
              void child()
              {
                    System.out.println("Child Method");
              }
              void print(float x,float y)
              {
                    System.out.println("Overriding child method");
              }
         }

Overriding` (Run Time Polymorphism):: Functions with same name and same parameters

 Ex:: Class A
         {
              void print()
              {
                   System.out.println("Parent Method");
              }
         }
         Class B extends Class A
         {
              void child()
              {
                    System.out.println("Child Method");
              }
              void print()
              {
                    System.out.println("Child method overrides parent method");
              }
         }
share|improve this answer
Perhaps you would like to add that the overriding concept applies for the parent class-sub class relationship. – Freakyuser Feb 27 at 6:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.