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

单例模式

时间:2018-01-30 22:54:09      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:接口   body   tin   span   new   system   style   post   pack   

单例模式的三个步骤
 1.构造方法私有化
 2.定义一个静态的本类成员
 3.设计一个静态的接口用来返回上面定义的那个类对象成员


package aaaa;

class singleton{
    
    public static singleton instance = null;    //静态的本类成员
    private singleton() {        //构造方法私有化
        
    }
    public static singleton getInstance() {        //设计一个静态的接口来返回上面定义的那类本类成员
        if(instance == null) {
            instance = new singleton();
        }
        return instance;
    }
    
    
}

public class demo1 {
    public static void main(String[] args) {
        singleton instance1 = singleton.getInstance();
        singleton instance2 = singleton.getInstance();
        
        System.out.println(instance1 + "  "+ instance2);
    }
}

 

单例模式

标签:接口   body   tin   span   new   system   style   post   pack   

原文地址:https://www.cnblogs.com/1950137408lxj/p/8387273.html

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