InterviewSolution
Saved Bookmarks
| 1. |
What is Nested top-level class? |
|
Answer» If a class is declared within a class and specify the static modifier, the compiler treats the class just like any other top-level class. Nested top-level class is an Inner class. |
|