InterviewSolution
Saved Bookmarks
| 1. |
What is Method Overloading? |
|
Answer» Method Overloading allows a class to have more than one methods of having the same NAME, but only if the argument LISTS are VARYING. This feature is similar to CONSTRUCTOR overloading feature that allows more than one constructor to a class only if their argument lists are DIFFERENT. |
|