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 use of super keyword in java?
What is Generic in java? Where can we write Generic ( class or method or objects or etc...)? with simple example? Thanks, Bose.
2 Answers Infosys, Tech Mahindra,
Is java still necessary?
How do you control extraneous variables?
What are the differences between processes and threads?
Which package is imported by default?
Can you make an instance of an abstract class?
What is meant by collection in java?
Difference between String and String Buffer?
What are the types of collections in java?
what is run time polymorphism
Infinite loop using while ?