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

单例类

时间:2018-08-03 14:35:41      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:single   return   ret   使用   test   单例   实例   let   ==   

如果一个类始终只能创建一个实例,

 

 1 class Singleton {
 2     public static Singleton instance;
 3     private Singleton() {}
 4     public static Singleton getInstance() {
 5         if (instance == null) {
 6             instance = new Singleton();
 7         }
 8 
 9         return instance;
10     }
11 }
12 
13 public class SingletonTest {
14     public static void main(String[] args) {
15         Singleton s1 = Singleton.getInstance();
16         Singleton s2 = Singleton.getInstance();
17 
18         System.out.println(s1 == s2);
19     }
20 }

使用单例类模式

 

单例类

标签:single   return   ret   使用   test   单例   实例   let   ==   

原文地址:https://www.cnblogs.com/hmy-blog/p/9413341.html

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