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

单例模式

时间:2016-09-22 14:37:29      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:

 1 public class Singleton {
 2 
 3     private static Singleton singleton ;
 4     
 5     private Singleton(){}
 6     
 7     public static Singleton getInstance(){
 8         
 9         if(singleton == null){
10             
11             singleton = new Singleton();
12             
13         }
14         return singleton;
15     }
16 }

 

单例模式

标签:

原文地址:http://www.cnblogs.com/mybatis/p/5896165.html

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