Answer Posted / 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 |
Post New Answer View All Answers
How do you generate random numbers in java?
What is the old name of java?
What is udp in java?
Which java collection does not allow null?
What are latest features introduced with java 8?
What are 3 data types?
Explain how can you debug the Java code?
What is bufferedwriter?
What is fail first in java?
Name few java.lang classes introduced with java 8 ?
What are the java ide’s?
What are the 8 data types in java?
Which collection allows duplicate values in java?
What is a class instance variable?
How many static init can you have?