You are viewing a single comment's thread. Return to all comments →
class Singleton{
public String str; private Singleton() { } public static Singleton getSingleInstance() { return new Singleton(); }
}
Seems like cookies are disabled on this browser, please enable them to open this website
Java Singleton Pattern
You are viewing a single comment's thread. Return to all comments →
class Singleton{
}