InterviewSolution
Saved Bookmarks
| 1. |
What are the final class and final method? |
|
Answer» Its properties cannot be DECLARED final, only CLASSES and methods may be declared as final. If the class or method DEFINED as final, then it cannot be extended. Exampleclass childClassname EXTENDS parentClassname { |
|