can we create object for static class in java
Answer Posted / ashlesha sharma
there are two types of classes..
1.Top level class
2.inner class
top level classes cant be declared as static.Its a
compilation error.
inner classes can be declared as follows:
1.Anonymous classes: cant be declared as static.
2.Local classes: cant be declared as static.
3.member classes: the only class that can be declared as static.
4.nested loop level class:A nested top-level class is a
member classes with a static modifier. A nested top-level
class is just like any other top-level class except that it
is declared within another class or interface.
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
Explain creating threads by extending thread class ?
What is the new line character?
What are the different http methods?
What is the syntax and characteristics of a lambda expression? Explain
What is a data structure java?
What are the advantages of encapsulation in java?
What is module in oop?
What is yield () in java?
What is difference between array and vector?
What is the significance of listiterator?
What is the difference between the paint() and repaint() methods in java programming?
Can we call virtual funciton in a constructor ?
Can a class have multiple subclasses?
what is anonymous class in java?
What is a get method?