标签:
复习下单例模式 我擦今天上网看了下 单例整理的好多啊 自己就跟着敲一遍 顺便说下自己的理解。
单例第一种:
1 public class Singleton {
2 private static Singleton instance;
3 private Singleton (){}
4
5 public static Singleton getInstance() {
6 if (instance == null) {
7 instance = new Singleton();
8 }
9 return instance;
10 }
11 }
标签:
原文地址:http://www.cnblogs.com/greenboy/p/4493748.html