InterviewSolution
Saved Bookmarks
| 1. |
How Is Method Overriding Different From Overloading? |
|
Answer» When overriding, you CHANGE the method behavior for a derived class. OVERLOADING SIMPLY involves having a method with the same name WITHIN the class. When overriding, you change the method behavior for a derived class. Overloading simply involves having a method with the same name within the class. |
|