Skip to main content

SingletonClass

Singleton Java class:
====================================
-> The Java class that allows us to create only one object per JVM is called singleton java class.
-> Situations to take singleton java class:
   a. If class is not having any state.
   b. If class is having only sharable read only state (final variable).
   c. If class is having huge amount of state and performing write operations on that state in synchronized manner (1 Thread at a time).

Creation of our own Singleton class
=======================
-> We can create our own singleton class, by using
private constructor,
static variables,
static methods
we can implement singleton classes.

Example:
public class Test implements Cloneable
{
private static Test t;
private Test()
{
}
public static Test getInstance()
{
if(t==null)
{
t=new Test();
}
return t;
}
public Object clone()
{
return this;
}
}

Now , 
Test t1=Test.getInstance();
Test t2=Test.getInstance();
Test t3=Test.getInstance();
|
|
Test t100=Test.getInstance();

Like this, Only one object is created here with multiple references.
========================================================================================
-> If Constructor is not private then outside person can create object directly by calling constructor.
     In that case they can create multiple objects and also we will miss singleton behavior.
-> If 't' is not private then after creation of first object outside person can reassign 't' with null. In
     that case a second new object will be created, whenever we call getInstance() method again.
          Test t1=Test.getInstance();
          Test.t=null;
          Test t2=Test.getInstance();
-> If we are not overriding clone() method & Test class implements Cloneable then Object class
     clone() method will be executed which provides always a separate new object.
Test t1=Test.getInstance();
Test t2=(Test)t1.clone();
========================================================================================
Advantage of Singleton Class:
==========================
Instead of creating multiple objects we can run entire show with only one object but with multiple references.
Hence the main advantage of singleton class is performance will be improved and we know object creation is most precious.

Comments

Popular posts from this blog

Mockito interview Questions

1.       Question 1. What Is Mockito? Answer : Mockito allows creation of mock object for the purpose of Test Driven Development and Behavior Driven development. Unlike creating actual object, Mockito allows creation of fake object (external dependencies) which allows it to give consistent results to a given invocation. 2.       Question 2. Why Do We Need Mockito? What Are The Advantages? Answer : Mockito differentiates itself from the other testing framework by removing the expectation beforehand. So, by doing this, it reduces the coupling. Most of the testing framework works on the "expect-run-verify". Mockito allows it to make it "run-verify" framework. Mockito also provides annotation which allows to reduce the boilerplate code. 3.       Question 3. Can You Explain A Mockito Framework? Answer : In Mockito, you always check a particular class. The dependency in that class is injected using m...

JAVA Expert Interview Questions Answers 2017

Java Basics ::  Interview Questions and Answers Home  »  Interview Questions  »  Technical Interview  »  Java Basics  » Interview Questions 1.     What is the difference between a constructor and a method? A constructor is a member function of a class that is used to create objects of that class. It has the same name as the class itself, has no return type, and is invoked using the new operator. A method is an ordinary member function of a class. It has its own name, a return type (which may be void), and is invoked using the dot operator. 2.     What is the purpose of garbage collection in Java, and when is it used? The purpose of garbage collection is to identify and discard objects that are no longer needed by a program so that their resources can be reclaimed and reused. A Java object is subject to garbage collection when it becomes unreachable to the program in which it is used. 3.  ...

Java Example Program to Convert List to Set

import java.util.ArrayList; import java.util.HashSet; import java.util.Set; public class ListToSet {  /**   * @author Amarjit Kumar   * @category interview questions   *   * Description: Convert List to set in java with example program   *   */  public static void main(String[] args) {   ArrayList<String> arrList= new ArrayList<>();   arrList.add("Java");   arrList.add("Java");   arrList.add("List to String");   arrList.add("Example Program");   Set<String> strSet = new HashSet<String>(arrList);   System.out.println(strSet);   System.out.println(arrList);  } } /*  * Java program to convert list to set. Convert ArrayList of string to HashSet  * in java example program How to convert List to Set in java Set<String> strSet  * = new HashSet<String>(arrList); HashSet having a constructor which will take  * list as an ar...