adspace
What is singleton class in java and how can we make a class singleton?
Answer Posted / Sarover Singh
{"singleton_class": "A singleton class in Java is a class that guarantees only one instance of the class during its lifetime. It prevents multiple instances of the class from being created.n"singleton_design_pattern": "To make a class singleton, we can use the following methods: 1) Eager Initialization - Initialize the instance at the time of class loading using static block.n2) Lazy Initialization - Create the instance when it is first called using double-checked locking or Bill Pugh's Singleton method.",n"eager_initialization": "public class EagerSingleton {"static "final" private EagerSingleton instance = new EagerSingleton();
private EagerSingleton() {}
public static EagerSingleton getInstance() {
return instance;
}"}",n"lazy_initialization": "public class LazySingleton {"static "volatile " private LazySingleton instance = null;
private LazySingleton() {}
public static synchronized LazySingleton getInstance() {nif (instance == null) {nsynchronized (LazySingleton.class) {nif (instance == null) {ninstance = new LazySingleton();n}n}n}nreturn instance;
}"}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is a constructor overloading in java?
What is a classloader in java?
How to create a base64 decoder in java8?
What is the difference between equals() and == in java?
What is an object in java and how is it created?
How to sort array in descending order in java?
Is minecraft 1.15 out?
Write a java program to find the route that connects between Red and Green Cells. General Rules for traversal 1. You can traverse from one cell to another vertically, horizontally or diagonally. 2. You cannot traverse through Black cells. 3. There should be only one Red and Green cell and at least one of each should be present. Otherwise the array is invalid. 4. You cannot revisit a cell that you have already traversed. 5. The maze need not be in the same as given in the above example
What is the difference between break and continue statements?
Differentiate between static and non-static methods in java.
What is java string pool?
explain different ways of using thread? : Java thread
What are the differences between heap and stack memory in java?
Write a program to print count of empty strings in java 8?
Realized?