码迷,mamicode.com
首页 > 其他好文 > 详细

设计模式——单例模式

时间:2018-01-13 22:24:55      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:single   nbsp   单例   编译   ati   ret   class   习惯   public   

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

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

 

设计模式——单例模式

标签:single   nbsp   单例   编译   ati   ret   class   习惯   public   

原文地址:https://www.cnblogs.com/tengpan-cn/p/8280473.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!