设计模式——单例模式

单例模式有很多种,个人习惯使用如下方式:

//记事本 手写,未必能编译通过哦
public class Single {
    private static class Holder{
        static final Single instance = new Single();
    }
    public static Single getInstance(){
        retuen Holder.instance;
    }    
    private Single(){
    }
}

 

posted @ 2018-01-13 20:39  沙中世界  阅读(113)  评论(0编辑  收藏  举报