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

单例模式

时间:2017-07-26 00:19:26      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:有一个   nbsp   访问   .net   实例   ber   let   runtime   sed   

1.Singleton(单例)
作用:保证类只有一个实例;提供一个全局访问点
JDK中体现:
(1)Runtime
(2)NumberFormat
类图:
技术分享

技术分享
public class Singleton {
    private static Singleton instance=new Singleton();
    private Singleton()
    {
        
    }
    public static Singleton newInstance()
    {
        return instance;
    }
}
View Code

 

单例模式

标签:有一个   nbsp   访问   .net   实例   ber   let   runtime   sed   

原文地址:http://www.cnblogs.com/liandy0906/p/7236929.html

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