As per Marcus Mock
test 3 Qno) 38
Is the following statement true/false.
"a nested top-level class cannot declare any static variables, static methods, or static initializers."
As per my understanding, "a nested top-level class " is a static inner class, i think the statement above is False.
Static inner class can include static vars, methods, static initializers if the class is static.
can anyone verify this!
Thanks.