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 |
How do you declare an array that will hold more than 64KB of data?
What are parsing rules?
What does \ mean in regex?
What are the differences between checked exception and unchecked exception?
How to sort array in descending order in java?
What is Collections API?
What is an infinite loop? How infinite loop is declared?
Is the empty set a singleton?
7) Suppose there is Student class like class student { int age; string name; } We want to store these objects in a HashMap. Do we need to override any methods in Student class? If any which ones and why? what if i just override equals or just hashcode? what will be the results in both the cases?
What is difference between == and === in js?
What is the same as procedures?
If you do not want your class to be inherited by any other class. What would you do?