can we create object for static class in java
Answers were Sorted based on User's Feedback
Answer / soma414@gmail.com
yes we want create the object by using static class in java
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / manjula
yes we can able to create object for the static class.. but
it is none of use.. because we can call the static class
without creating the object
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / faisal
Yes you can instantiate a static inner class and it makes sense. Internal working of hash map and hash table is based on same
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / santosh vyavhare
We can create a object of "static nested class ".
For eg. class Abc{
static class X{
void m()
System.out.println("static nested class method");
}
public static void main(String[] a)
{
X x=new X();
x.m();
}
}
but if you can not declare outer class as a static if u try to make outer class as static it will generate compile time error.
For eg static class X{}
It will generate compile time error as "Illegal modifier for the class".
| Is This Answer Correct ? | 0 Yes | 0 No |
Why do we create threads in java?
What is an array and a vector? How they different from each other?
Explain numeric promotion?
How many digits is int32?
What do you mean by stack?
Hey buddy.. can you please tell me about the use of marker interface? And is there any link between marker interface and factory methods? Thanks in advance.
What is the primitive type short?
Is &&= a valid Java operator?
how to make the double-tone class ? as we have singletone class..?
What do you mean by inner class in java? Explain
Can we declare the main method of our class as private?
Difference between Linked list and Queue?