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

What is the singleton class in java?

Answer Posted / paletipatisrinu

singleton class:A java class create only one object per jvm
is called singleton java class.Most of jdbc driver class
implemented as a singleton java class

Ex:
class SingletonClass
{
private static SingletonClass singleObject;
public static SingletonClass getInstance()
{
if (singleObject == null)
{
singleObject = new SingletonClass();
}
return singleObject;
}
}

Singletone java class example is
org.apache.struts.action.ActionServlet

Is This Answer Correct ?    2 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is spliterator in java se 8?

1107


Which is more secure: java or activex? : java security

932


What is web container in java?

934


What is lambda value?

946


What is the purpose of jdk?

916


what are the different phases in delivering the project during development and maintenance?

4620


can anyone tell me what kind of questions are asked for core java exam in aptech

1864


I want to control database connections in my program and want that only one thread should be able to make database connection at a time. Define how can I implement this logic?

997


Can the main method be overloaded?

965


What is crud operations in java?

907


What is aop in java?

896


What is entitymanager in java?

1009


What is gui in java with examples?

1035


How can I swap two variables without using a third variable?

982


What is @override annotation in java?

983