1 Star 1 Fork 0

UWillno/快递管理系统-用户端

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
singleton.h 461 Bytes
一键复制 编辑 原始数据 按行查看 历史
UWillno 提交于 2023-09-19 20:53 . 初始化
#ifndef SINGLETON_H
#define SINGLETON_H
template < typename T >
class Singleton final
{
public:
static T& GetInstance()
{
static T instance;
return instance;
}
private:
Singleton() = default;
~Singleton() = default;
Singleton(const Singleton&) = delete;
Singleton& operator=(const Singleton&) = delete;
Singleton(Singleton&&) = delete;
Singleton& operator=(Singleton&&) = delete;
};
#endif // SINGLETON_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/uwillno/Express_user_system.git
git@gitee.com:uwillno/Express_user_system.git
uwillno
Express_user_system
快递管理系统-用户端
master

搜索帮助