InterviewSolution
| 1. |
Difference Between Overloading And Overriding? |
|
Answer» Overloading is static binding WHEREAS OVERRIDING is DYNAMIC binding. Overloading is nothing but the same method with DIFFERENT arguments , and it may or may not return the same value in the same class itself. Overloading is static binding whereas Overriding is dynamic binding. Overloading is nothing but the same method with different arguments , and it may or may not return the same value in the same class itself. |
|