手写单例模式

用户头像
escray
关注
发布于: 2020 年 10 月 03 日
手写单例模式



Done is better than perfect.



做一个简单的,完成作业先。



Singleton



这么多年,终于从手写 Hello World 升级到了手写 Singleton,可惜还写错了。等我当面试官的时候……



public class Singleton {
private Singleton() {
}
private static Singleton instance = new Singleton();
public static Singleton getInstance() {
return instance;
}
}



发布于: 2020 年 10 月 03 日 阅读数: 14
用户头像

escray

关注

Let's Go 2017.11.19 加入

大龄程序员

评论

发布
暂无评论
手写单例模式