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 |
What is boyce codd normal form in c++?
Explain function overloading
What is polymorphism in c++? Explain with an example?
Suppose that data is an array of 1000 integers. Write a single function call that will sort the 100 elements data [222] through data [321].
total amount of milk produced each morning and then calculates and outputs the number of cartons needed for this milk , the cost of producing the milk and the profit from producing this milk.
What will happen if I allocate memory using "new" and free it using "free" or allocate sing "calloc" and free it using "delete"?
what is the size of a class which contains no member variables but has two objects??? is it 1 or 2??
How can you differentiate between inheritance and implementation in c++?
What does return 0 do in c++?
How do you find out if a linked-list has an end? (I.e. The list is not a cycle)
What are the weaknesses of C++?
what is data Abstraction