Java / Design Patterns
What is double checked locking in Singleton?
Double-checked locking prevents creating a duplicate instance of Singleton when call to getInstance() method is made in a multi-threading environment. In Double checked locking pattern as shown in below example, singleton instance is checked two times before initialization.
public class Singleton{ private static Singleton _INSTANCE; public static Singleton getInstance() { if(_INSTANCE==null) { synchronized(Singleton.class){ // double checked locking inside synchronized block if(_INSTANCE==null){_INSTANCE=new Singleton();} } } return _INSTANCE; } }
Dogecoin! Earn free bitcoins up to $250 now by signing up.
Invest now!!! Get Free equity stock (US, UK only)!
Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.
The Robinhood app makes it easy to trade stocks, crypto and more.
Webull! Receive free stock by signing up using the link: Webull signup.
More Related questions...
