InterviewSolution
Saved Bookmarks
| 1. |
What Is The Impact Of Declaring A Method As Final? |
|
Answer» A method DECLARED as FINAL can't be overridden. A sub-class can't have the same method signature with a different IMPLEMENTATION. A method declared as final can't be overridden. A sub-class can't have the same method signature with a different implementation. |
|