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 |
Is there is any difference between a scrollbar and a scrollpane?
What is an argument java?
Explain exception chaining in java?
How to add two numbers with out using Arithmetic , union operators in java....? But we can use bitwise operators... but how...?
What is the difference between constructor and method?
What is the map interface in java programming?
How to reverse a string in java?
What are autoboxing and unboxing? When does it occur?
Does java runtime require a license?
What is a lambda expression ? What's its use ?
what is the diff between Servletcontext and servletconfig?
Can a class be private or protected in java?