What is the difference between overloading and overriding.
|
|
Overloading Overloading is when you have multiple methods in the same scope, with the same name but different signatures.
Overriding Overriding is a principle that allows you to change the functionality of a method in a child class.
|
|||
|
|
An astute interviewer would have followed up with: |
|||
|
|
As Michael said:
and
|
|||
|
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
Simple definitions for overloading and overriding Overloading (Compile Time Polymorphism):: Functions with same name and different parameters
Overriding` (Run Time Polymorphism):: Functions with same name and same parameters
|
||||
|