InterviewSolution
Saved Bookmarks
| 1. |
A class can be made final. Can we make a Constructor final in Java? |
|
Answer» A class is MADE FINAL in JAVA so that it cannot be extended. But we cannot make a CONSTRUCTOR final. |
|