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

单例模式

时间:2014-11-05 22:46:36      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   sp   div   on   log   new   as   

 1 public class Singleton {
 2     
 3 private static Singleton singleton;
 4     //懒汉式单例
 5     private static Singleton singleton;
 6     private Singleton(){
 7     }
 8     
 9     public static synchronized Singleton getSingleton() {
10         if (singleton == null) {
11             singleton = new Singleton();
12         }
13         return singleton;
14     }
15 }    
1 public class Singleton {
2   private static Singleton singleton = new Singleton();
3     private Singleton(){
4     }
5     
6     public static synchronized Singleton getSingleton() {
7         return singleton;
8     }  
9 }

synchronized:线程同步(不允许多个线程同时访问该方法)

单例模式

标签:style   blog   color   sp   div   on   log   new   as   

原文地址:http://www.cnblogs.com/f644135318/p/4077357.html

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