-
Notifications
You must be signed in to change notification settings - Fork 8
/
main.cpp
163 lines (127 loc) · 3.54 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
/*
* @FileName : singleton/main.cpp
* @CreateAt : 2022/4/6
* @Author : Inno Fang
* @Email : innofang@yeah.net
* @Description:
*/
#include <iostream>
class SingletonBase {
public:
SingletonBase(const SingletonBase &) = delete;
SingletonBase &operator=(const SingletonBase &) = delete;
public:
static SingletonBase *get_instance() {
if (_instance == nullptr) {
_instance = new SingletonBase();
}
return _instance;
}
private:
SingletonBase() = default;
static SingletonBase *_instance;
};
class SingletonBaseRAII {
public:
SingletonBaseRAII(const SingletonBaseRAII &) = delete;
SingletonBaseRAII &operator=(const SingletonBaseRAII &) = delete;
public:
static SingletonBaseRAII *get_instance() {
if (_instance == nullptr) {
_instance = new SingletonBaseRAII();
}
return _instance;
}
private:
SingletonBaseRAII() = default;
static SingletonBaseRAII *_instance;
class GC {
public:
~GC() {
// `if` statement is unnecessary; deleting null pointer has no effect
// if (_instance != nullptr) {
// delete _instance;
// }
delete _instance;
}
};
static GC _gc;
};
#include <mutex>
std::mutex mtx;
class SingletonThreadSafe {
public:
SingletonThreadSafe(const SingletonThreadSafe &) = delete;
SingletonThreadSafe &operator=(const SingletonThreadSafe &) = delete;
public:
static SingletonThreadSafe *get_instance() {
if (_instance == nullptr) {
mtx.lock();
if (_instance == nullptr) {
_instance = new SingletonThreadSafe();
}
mtx.unlock();
}
return _instance;
}
private:
SingletonThreadSafe() = default;
static SingletonThreadSafe *_instance;
class GC {
public:
~GC() {
delete _instance;
}
};
static GC _gc;
};
class SingletonStatic {
public:
SingletonStatic(const SingletonStatic &) = delete;
SingletonStatic &operator=(const SingletonStatic &) = delete;
public:
static SingletonStatic *get_instance() {
static SingletonStatic instance;
return &instance;
}
private:
SingletonStatic() = default;
~SingletonStatic() = default;
};
template<typename T>
class Singleton {
public:
Singleton(const Singleton &) = delete;
Singleton &operator=(const Singleton &) = delete;
public:
static T &get_instance() {
static T value_;
return value_;
}
private:
Singleton() = default;
~Singleton() = default;
};
class A {
public:
A() { a = 1; }
void show() { std::cout << "A.a=" << a << std::endl; }
private:
int a;
};
int main() {
// std::cout << "\n==> SingletonBase" << std::endl;
// std::cout << (SingletonBase::get_instance() == SingletonBase::get_instance()) << std::endl;
//
// std::cout << "\n==> Singleton base RAII" << std::endl;
// std::cout << (SingletonBaseRAII::get_instance() == SingletonBaseRAII::get_instance()) << std::endl;
//
// std::cout << "\n==> Singleton with Thread safety" << std::endl;
// std::cout << (SingletonThreadSafe::get_instance() == SingletonThreadSafe::get_instance()) << std::endl;
// best singleton!
std::cout << "\n==> Singleton Static" << std::endl;
std::cout << (SingletonStatic::get_instance() == SingletonStatic::get_instance()) << std::endl;
std::cout << "\n==> Singleton with template" << std::endl;
Singleton<A>::get_instance().show();
return 0;
}