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 the benefit of inner / nested classes ?
Give a briefing on the life cycle of a thread.
When do we use hashset over treeset?
Do loops java?
System.out & System.in are final static data member of System class but we can change there reference through setOut() & setIn() method how...
What is computer compiler?
What is rule of accessibility in java?
Why does java not support operator overloading?
How does JAVA ClassLoader work?
what is multithreading?
Is there any difference between nested classes and inner classes?
What is singleton class in ruby?