Singleton Design Pattern
Uncategorized
Add comments
Feb 082010
Here’s slide I’ve made for my presentation to my college on Singleton Design Pattern. There’s example in C# and JavaScript.
Here’s slide I’ve made for my presentation to my college on Singleton Design Pattern. There’s example in C# and JavaScript.
public sealed class Singleton {
private static Singleton instance;
private Singleton() {}
public static Singleton getInstance () {
if (instance==null)
instance = new Singleton();
return instance;
}
}
// looks better right?