`
SongDick
  • 浏览: 359 次
  • 性别: Icon_minigender_1
  • 来自: 上海
最近访客 更多访客>>
文章分类
社区版块
存档分类
最新评论
文章列表

单例模式

    博客分类:
  • java
最近看到项目组SE写的单例: Java代码  收藏代码 private static SingleTon instance = null;    public static SingleTon getInstance() {      if(instance == null) {          return instance;      } else {          synchronized(instance) {              if(instance == null) {                  instance = new SingleTon ...
Global site tag (gtag.js) - Google Analytics