C++之智能指针和普通指针单例模式两种实现
【摘要】 1 问题
实现c++的单例模式,这里测试分别写了通过智能指针返回对象和普通返回指针
2 代码测试
include <iostream>#include <mutex>#include <memory> using namespace std; class Single{publ...
1 问题
实现c++的单例模式,这里测试分别写了通过智能指针返回对象和普通返回指针
2 代码测试
-
include <iostream>
-
#include <mutex>
-
#include <memory>
-
-
using namespace std;
-
-
-
class Single
-
{
-
public:
-
static Single& getInstance()
-
{
-
std::mutex mt;
-
if (instance.get() == NULL) {
-
mt.lock();
-
if (instance.get() == NULL) {
-
instance.reset(new Single());
-
}
-
mt.unlock();
-
}
-
return *instance;
-
}
-
private:
-
Single(){}
-
~Single(){}
-
static std::auto_ptr<Single> instance;
-
friend class std::auto_ptr<Single>;
-
-
Single(const Single&);
-
Single& operator= (const Single&);
-
};
-
-
std::auto_ptr<Single> Single::instance;
-
-
class Single1
-
{
-
public:
-
static Single1* getInstance()
-
{
-
mutex mt;
-
if (instance == NULL) {
-
mt.lock();
-
if (in
文章来源: chenyu.blog.csdn.net,作者:chen.yu,版权归原作者所有,如需转载,请联系作者。
原文链接:chenyu.blog.csdn.net/article/details/83834897
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)