首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

单例的最佳实践!

2013-09-10 
单例的最佳实践!!http://en.wikipedia.org/wiki/Singleton_patternpublic class Singleton {// Private co

单例的最佳实践!!

http://en.wikipedia.org/wiki/Singleton_pattern

 

 

public class Singleton {        // Private constructor prevents instantiation from other classes        private Singleton() { }         /**        * SingletonHolder is loaded on the first execution of Singleton.getInstance()         * or the first access to SingletonHolder.INSTANCE, not before.        */        private static class SingletonHolder {                 public static final Singleton INSTANCE = new Singleton();        }         public static Singleton getInstance() {                return SingletonHolder.INSTANCE;        }}

 

热点排行