设计模式
https://refactoringguru.cn/design-patterns
单例
https://zhuanlan.zhihu.com/p/37469260
https://blog.csdn.net/justloveyou_/article/details/64127789
一个类仅有一个实例
饿汉模式
实例在程序运行时被立即执行初始化
懒汉模式
实例在第一次被使用时才进行初始化
注意
new的单例的指针 不能用非单例的对象管理 会core
new的非单例的指针 不要在单例对象管理 会内存泄露
# Related Post
1.程序在计算机如何运行
2.根据字符选择函数
3.卫语句
4.通过类名(字符串)来实例化类
5.code check
6.gdb
7.cpp debug
8.gflags
1.程序在计算机如何运行
2.根据字符选择函数
3.卫语句
4.通过类名(字符串)来实例化类
5.code check
6.gdb
7.cpp debug
8.gflags