0
kicks
Pattern Focus: Singelton V2.0
Singelton has been around for ages, it's about time someone remodernized the pattern. Utilizing generics, implict casts, template method and some reflection V2.0 of singelton now enables a developer to create a reusable Singelton class that allows for usage like:
MyFactory factory1 = new StaticSingelton("Init data");
MyFactory factory2 = new StaticSingelton("Init data");
Which makes sure that factory1 and factory2 shares the same instances of MyFactory. Want to know how? Read the full article.