RosettaCodeData/Task/Singleton/Java/singleton-3.java
Ingy döt Net 776bba907c Sync
2013-10-27 22:24:23 +00:00

20 lines
341 B
Java

class Singleton
{
private static Singleton myInstance;
public static Singleton getInstance()
{
if (myInstance == null)
{
myInstance = new Singleton();
}
return myInstance;
}
protected Singleton()
{
// Constructor code goes here.
}
// Any other methods
}