MCPcopy Create free account
hub / github.com/Anchals24/Low-Level-Design / Singleton

Method Singleton

SingletonDesignPattern/Singleton.java:5–6  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

3public class Singleton {
4 //Step1: We have created a private constructor of Singleton class & it can only be instantiated within this class.
5 private Singleton(){
6 }
7
8 //Step2: Create a static var to hold one instance of Singleton class.
9

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected