static inner classes means..?
Answer / ranganathkini
static inner classes are nested class members marked by the
"static" keyword. These classes have access to the enclosing
class's static members but no access to the non-static
members of the enclosing class.
Static classes do not depend on an instance of their
enclosing class and hence they can be instantiated without
instantiating their enclosing class.
| Is This Answer Correct ? | 1 Yes | 0 No |
What is an 8 bit word?
What does replaceall do in java?
Is null a string or object in java?
What is difference between module and function?
Can a class extend 2 classes in java?
Program to print 1 1 2 1 2 3 1 2 3 4 like that
How is a structure different from array ?
Explain thread in java?
What is the difference between break and continue statements?
How is hashcode calculated in java?
What do you mean by aggregation?
What is casting?