InterviewSolution
Saved Bookmarks
| 1. |
What is a Static Nested Class in Java? |
|
Answer» A STATIC nested class is a nested class DECLARED as static. A nested class can’t ACCESS the data members and METHODS of the outer class. |
|