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...

How many objects are created for a singleton class

Answer Posted / utkarsh verma

c++ program to explain Singleton

class Single {

private:
Single(){} //Can't instantiate

public:
Static Single* Obj;
Static *Single Instance ()
{
if(Obj == NULL)
Obj = new Single();
return Obj;
}
}//End of class

Single * Single ::Obj = NULL;

void main(){

Single *ptr = Obj->Instance(); //The only way to instantiate

}

Is This Answer Correct ?    3 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is int argc char * argv?

1061


What is instance example?

900


How do you reverse a list?

949


Can you start a thread twice in Java?

1060


What is the point of polymorphism java?

953


Can java arraylist hold different types?

990


What is protected access modifier?

953


Can we serialize static variables in java?

1036


What is sizeof () operator?

925


What two classes are used to read data only?

1034


What is the diffrence between inner class and nested class?

1028


How does queue work in java?

934


whar are the draw backs of programming lang step by step in Clang and next in C++ and next and in Java nad in .Net

2059


What are different access specifiers in java?

949


What is a singleton class in Java?

982