Difference between Overloading and Overriding?

Answers were Sorted based on User's Feedback



Difference between Overloading and Overriding?..

Answer / swetcha

Overloading - Two functions having same name and return
type, but with different type and/or number of arguments.
Overriding - When a function of base class is re-defined in
the derived class.

Is This Answer Correct ?    850 Yes 105 No

Difference between Overloading and Overriding?..

Answer / janet

1. In overloading,there is a relation ship between methods
available in the same class where as in overridding,there
is relationship between a super class method and subclass
method.
2. overloading doesn't block inheritence from the
superclass where as overridding blocks inheritence.

3. in overloading,seperate methods share the same name
where as in overridding,subclass methods replaces the
superclass.

4.overloading must have different method signatures where
as overriding must have same signature.

Is This Answer Correct ?    482 Yes 79 No

Difference between Overloading and Overriding?..

Answer / shivanand

The main difference between overloading and overriding is
that in overloading we can use same function name with
different parameters for multiple times for different tasks
with on a class.
and overriding means we can use same name fiunction name
with same parameters of the base class in the derived class.
this is also called as reusability of code in the programme.

Is This Answer Correct ?    312 Yes 67 No

Difference between Overloading and Overriding?..

Answer / natarajan

Overloading is compile time binding, where as overriding is
dynamic binding.

Is This Answer Correct ?    149 Yes 40 No

Difference between Overloading and Overriding?..

Answer / ramesh pedhamalla

Overloading is compile time binding, where as overriding is
dynamic binding.....

Is This Answer Correct ?    112 Yes 25 No

Difference between Overloading and Overriding?..

Answer / gaurav rawat

* in overloading function name are same but signatures
(argument) are different .
while in overriding function name are as well as argument
are same in drive class as in super class.
* for overloading can be done in one class but
for overriding there is necessary that at least two class
should be present.

Is This Answer Correct ?    101 Yes 24 No

Difference between Overloading and Overriding?..

Answer / meenu kathuria

overloading: same name but different signatures in same class
overriding: same name and same signature defined in
different class.

Is This Answer Correct ?    103 Yes 34 No

Difference between Overloading and Overriding?..

Answer / adeel shahid

overriding is done in the base class where the parent class
method is overridden by a method of the same signature.

Overloading is done in the same class on functions with
input parameters differing in number or type.

Is This Answer Correct ?    98 Yes 36 No

Difference between Overloading and Overriding?..

Answer / n.balasutha

It does not block superclass method it will override the
super class method

Is This Answer Correct ?    93 Yes 63 No

Difference between Overloading and Overriding?..

Answer / mansi shah

Overloading is evaluaated at compile time whereas
Overriding is evaluated at Run Time.

Overloading method has different Parameters but same name
whereas Overriding is just the implementation of method
define din Base Class.

Overloading does not interfere Base Class whereas
Overriding method must require the method which is declared
in Base Class.

Overloading can be defined in one class,in short term it
does not require separate Base Class to implement the
method,whereas for implementing method overriding the Base
class is necessary..

Is This Answer Correct ?    21 Yes 10 No

Post New Answer

More C++ General Interview Questions

How do I run c++?

0 Answers  


What do you mean by enumerated data type?

0 Answers  


What is stack unwinding?

0 Answers  


Why do we use double in c++?

0 Answers  


When is dynamic checking necessary?

0 Answers  


What is endianness?

0 Answers  


What are the steps in the development cycle?

0 Answers  


which is best institue to learn C/C++ IN AMEERPET OR MAITHRIVANAM OR SR NAGAR, PLEASE HELP. THANKS IN ADVANCE

5 Answers  


Will a recursive function without an end condition every quit, in practice a) Compiler-Specific (Some can convert to an infinite loop) b) No c) Yes

0 Answers  


What are multiple inheritances (virtual inheritance)?

0 Answers  


What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };

2 Answers  


What do you mean by stack unwinding in c++?

0 Answers  


Categories