码迷,mamicode.com
首页 > 编程语言 > 详细

线程安全的单例模式

时间:2020-04-24 00:45:43      阅读:59      评论:0      收藏:0      [点我收藏+]

标签:style   instance   nano   int   time()   ati   code   bsp   get   

饿汉模式

 1 public class Single  {
 2 
 3     private static Single  instance = new Single();
 4     
 5     private Single(){
 6         System.out.println("Single: " + System.nanoTime());
 7     }
 8     
 9     public static Single getInstance(){
10         return instance;
11     }
12 }

 

线程安全的单例模式

标签:style   instance   nano   int   time()   ati   code   bsp   get   

原文地址:https://www.cnblogs.com/Yanss/p/12764821.html

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