What is the difference between "overloading" and "overridding"?

Answers were Sorted based on User's Feedback



What is the difference between "overloading" and "overridding"?..

Answer / shivanannd

overloading means that we can use same method with same
name many times for multiple purpose in a class with
difference parameters.

overriding means we can refer a method of a base class with
same name in a derived class with same paameters.

Is This Answer Correct ?    8 Yes 0 No

What is the difference between "overloading" and "overridding"?..

Answer / shakti singh khinchi

Overloading: When more then 1 methods in a class having same
name but they are different in their number of parameters,
different in their parameters types and their order.

Overriding: When a parent class is derived by a child class
and some method which has present in parent class which is
declared as "virtual" in parent class , same method with
same name and parameters and sam type is also declared in
child class without "virtual" keyword, bcz it is by default
virtual in child. SO PARENT AND CHILD CLASS USES SAME METHOD
ARE CALLED OVERRIDING.

Is This Answer Correct ?    4 Yes 0 No

What is the difference between "overloading" and "overridding"?..

Answer / vighnesh

Overloading uses same funtion with different parameters

Overriding Uses same exactly similar funtion prototypes
this used in runtime polimorphism ie Virtual Funtions

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More C++ General Interview Questions

What are the advantages of early binding?

0 Answers  


What are c++ stream classes?

0 Answers  


What are protected members in c++?

0 Answers  


How to declaring variables in c++?

0 Answers  


Describe functional overloading?

6 Answers   HP,






How does a copy constructor differs from an overloaded assignment operator?

0 Answers  


Difference between declaration and definition of a variable.

0 Answers  


What is function prototyping? What are its advantages?

0 Answers  


Explain how an exception handler is defined and invoked in a Program.

0 Answers  


What is a manipulative person?

0 Answers  


What do you mean by vtable and vptr in c++?

0 Answers  


Difference between pointer to constant vs. Pointer constant

0 Answers  


Categories