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 a object in static block
class A
{
static {
A a=new A();
}
}

Answer Posted / srinu

Yes we can create a object in static block
EX:-

public class Stobject
{
static
{
Stobject st =new Stobject();
}
Stobject()
{
System .out.println("object created");
}

public static void main(String k[])
{
System .out.println("HAI");
}
}
output:-
object created
HAi

Is This Answer Correct ?    6 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is layout in java swing?

1053


What is import javax swing jframe?

1062


What is the base class for all swing components?

1096


What is the mean of swing?

953


What are the benefits of swing over awt?

1242


What is an on stage swing?

1092


How to render an html page using only swing.

1051


How is parsing html used in swing?

1080


What is the role of java swing?

1018


What are the different types of layout managers used in swing?

1009


What is import javax swing * used for?

1031


What are the differences between Swing and AWT?

1179


What is the use of swing in java?

1099


What is the function of abstractaction class?

1121


What are the various components of swing?

1007