Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

can we create object for static class in java

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the final keyword denotes?

1167


What is variable length arguments in java?

1033


What is arraylist e in java?

1103


What are strings in physics?

1069


Can a constructor be protected?

1127


What does exp mean in math?

1044


What is difference between c++ and java ?

1166


What language is an assembler written in?

1055


Explain about class in java?

1160


Can we override singleton class?

1025


What is a generic type?

1051


How to Sort Strings which are given in List and display in ascending order without using java api.

4508


What does percent mean in java?

1072


Given a singly linked list, how will you print out its contents in the reverse order? Can you do it with consuming any extra space?

1040


What are Normalization Rules? Define Normalization?

1103