单例模式

Posted yumingxing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了单例模式相关的知识,希望对你有一定的参考价值。

 1 public class Singleton {
 2 
 3     private Singleton(){
 4         //do something
 5     }
 6 
 7     private static volatile Singleton singleton = null;
 8 
 9     public static Singleton getInstance(){
10         if (singleton == null){
11             synchronized (Singleton.class){
12                 if (singleton == null){
13                     singleton = new Singleton();
14                 }
15             }
16         }
17         return singleton;
18     }
19 }

 

以上是关于单例模式的主要内容,如果未能解决你的问题,请参考以下文章

常用代码片段

性能比较好的单例写法

片段作为 Android 中的单例

单例片段或保存网页视图状态

你熟悉的设计模式都有哪些?写出单例模式的实现代码

单例模式以及静态代码块