What is the difference between "overloading" and "overridding"?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
How important is c++?
What is a tuple c++?
Discussion on error handling of C++ .
What is an associative container in c++?
Is C++ case sensitive a) False b) Depends on implementation c) True
1.Between 100 and 999 are some numbers that have the characteristics that if you cube the individual digits and sum together you will get the same number. 2. A program that can accept as input an integer and output the equivalent of that number in words.
Difference between class and structure.
Carry out conversion of one object of user-defined type to another?
Profiler in projects?
Can I have a reference as a data member of a class? If yes, then how do I initialise it?
What do the header files usually contains?
What is the use of volatile keyword in c++? Give an example.