InterviewSolution
Saved Bookmarks
| 1. |
What Is Final? |
|
Answer» A final CLASS can’t be extended ie., final class may not be SUBCLASSES. A final method can’t be overridden when its class is inherited. You can’t change value of a final VARIABLE (is a constant) A final class can’t be extended ie., final class may not be subclasses. A final method can’t be overridden when its class is inherited. You can’t change value of a final variable (is a constant) |
|