How to implement or use the singleton class in java?
Answer Posted / pinaki mukherjee
A singleton is an object that cannot be instantiated. At
first, that might seem counterintuitive - after all, we need
an instance of an object before we can use it. Well yes a
singleton can be created, but it can't be instantiated by
developers - meaning that the singleton class has control
over how it is created. The restriction on the singleton is
that there can be only one instance of a singleton created
by the Java Virtual Machine (JVM) - by prevent direct
instantiation we can ensure that developers don't create a
second copy.
We'll start with the class definition, for a SingletonObject
class. Next, we provide a default constructor that is marked
as private. No actual code needs to be written, but you're
free to add some initialization code if you'd like.
public class SingletonObject
{
private SingletonObject()
{
// no code req'd
}
}
So far so good. But unless we add some further code,
there'll be absolutely no way to use the class. We want to
prevent direct instantiation, but we still need to allow a
way to get a reference to an instance of the singleton object.
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
Hi frnds how to lock an user when he enter wrong credentials more than 3 time using java or j2ee tech take username and password in a bean no need to connect DB and validate give me some sample application code or links its urgent for me thanks in advance
What is the Spring2.5 MVC Navigation flow?
What are the different types of ways where you can iterate over a list? : java collections
What are the different types of collections views being provided by the map interface? : java collections
What are the types of interface used in the java collections? : java collections
What are the different types of classes implemented in the set interfaces? : java collections
What are maps interfaces in the java collections? : java collections
What is the enumerator of the java collection framework? : java collections
What are the uses of the set interfaces in the java collections? : java collections
What are the considerations to be made in case of loops in java ?
Which server-side script takes the input from JavaScript, can access the database if it needs to, and processes the data.
What are the queues in the java collection framework? : java collections
please mail me the interview question based on java/j2ee
Hi Friends , am newbie to ajax. For example just consider one account registration - A form contains 8 text fields with submit button. In this form second texbox contains "username " . On right side of text box there is a label box . On clilck action i need to determine user is available or not. Is it possible on clicking label or should i click submit button.
can u draw class/object diagram for ATM