既然C ++ 11有多线程,我想知道在不使用互斥锁的情况下实现延迟初始化单例的正确方法是什么(出于性能原因)。 我想出了这个,但是我并不擅长编写无锁代码,所以我正在寻找更好的解决方案。
// ConsoleApplication1.cpp : Defines the entry point for the console application.
//
# include <atomic>
# include <thread>
# include <string>
# include <iostream>
using namespace std;
class Singleton
{
public:
Singleton()
{
}
static bool isInitialized()
{
return (flag==2);
}
static bool initizalize(const string& name_)
{
if (flag==2)
return false;// already initialized
if (flag==1)
return false;//somebody else is initializing
if (flag==0)
{
int exp=0;
int desr=1;
//bool atomic_compare_exchange_strong(std::atomic<T>* obj, T* exp, T desr)
bool willInitialize=std::atomic_compare_exchange_strong(&flag, &exp, desr);
if (! willInitialize)
{
//some other thread CASed before us
std::cout<<"somebody else CASed at aprox same time"<< endl;
return false;
}
else
{
initialize_impl(name_);
assert(flag==1);
flag=2;
return true;
}
}
}
static void clear()
{
name.clear();
flag=0;
}
private:
static void initialize_impl(const string& name_)
{
name=name_;
}
static atomic<int> flag;
static string name;
};
atomic<int> Singleton::flag=0;
string Singleton::name;
void myThreadFunction()
{
Singleton s;
bool initializedByMe =s.initizalize("1701");
if (initializedByMe)
s.clear();
}
int main()
{
while (true)
{
std::thread t1(myThreadFunction);
std::thread t2(myThreadFunction);
t1.join();
t2.join();
}
return 0;
}
请注意,clear()
仅用于测试,真正的单例不具备该功能。
答案 0 :(得分:138)
C ++ 11无需手动锁定。如果已经初始化静态局部变量,则并发执行应该等待。
§6.7 [stmt.dcl] p4
如果控件在初始化变量时同时进入声明,则并发执行应等待初始化完成。
因此,simple就像static
函数一样:
static Singleton& get() {
static Singleton instance;
return instance;
}
这将在C ++ 11中正常工作(当然,只要编译器正确实现了标准的那部分)。
当然,真正的正确答案是to not use a singleton, period。
答案 1 :(得分:34)
对我来说,使用C ++ 11实现单例的最佳方法是:
class Singleton {
public:
static Singleton& Instance() {
// Since it's a static variable, if the class has already been created,
// it won't be created again.
// And it **is** thread-safe in C++11.
static Singleton myInstance;
// Return a reference to our instance.
return myInstance;
}
// delete copy and move constructors and assign operators
Singleton(Singleton const&) = delete; // Copy construct
Singleton(Singleton&&) = delete; // Move construct
Singleton& operator=(Singleton const&) = delete; // Copy assign
Singleton& operator=(Singleton &&) = delete; // Move assign
// Any other public methods.
protected:
Singleton() {
// Constructor code goes here.
}
~Singleton() {
// Destructor code goes here.
}
// And any other protected methods.
}
答案 2 :(得分:2)
很难理解您的方法,因为您没有按预期使用代码...也就是说,单例的常见模式是调用instance()
来获取单个实例,然后使用它(同样,如果你真的想要一个单身人士,那么任何构造函数都不应该公开。
无论如何,我不认为你的方法是安全的,考虑到两个线程试图获取单例,第一个更新标志的将是唯一一个初始化,但是{{1}函数将在第二个函数的早期退出,并且该线程可能会在第一个线程完成初始化之前继续使用单例。
initialize
的语义被破坏了。如果您尝试描述 / 文档该函数的行为,您将获得一些乐趣,最终将描述实现而不是简单的操作。记录通常是一种简单的方法来仔细检查设计/算法:如果你最终描述如何而不是什么,那么你应该回到设计。特别是,无法保证在initialize
完成后实际已初始化对象(仅当返回值为initialize
时,有时如果它是true
,但并非总是如此)。
答案 3 :(得分:2)
恕我直言,实施单身人士的最佳方式是使用&#34;双重检查,单锁和#34;模式,你可以在C ++ 11中实现可移植: Double-Checked Locking Is Fixed In C++11 这种模式在已经创建的情况下很快,只需要一个指针比较,并且在第一次使用的情况下是安全的。
如前面的答案所述,C ++ 11保证了静态局部变量Is local static variable initialization thread-safe in C++11?的构造顺序安全性,因此您可以安全地使用该模式。但是,Visual Studio 2013还不支持它:-( See the "magic statics" row on this page,所以如果你使用VS2013,你仍然需要自己动手。
不幸的是,没有什么比这更简单了。上面模式引用的sample code无法从CRT初始化调用,因为静态std :: mutex有一个构造函数,因此不能保证在第一次调用getton之前初始化,如果调用的是CRT初始化的副作用。要绕过那个,你必须使用而不是互斥锁,而是指针到互斥锁,它保证在CRT初始化开始之前进行零初始化。然后你必须使用std :: atomic :: compare_exchange_strong来创建和使用互斥锁。
我假设C ++ 11线程安全的本地静态初始化语义即使在CRT初始化期间调用也能正常工作。
因此,如果您有可用的C ++ 11线程安全的本地静态初始化语义,请使用它们。如果没有,你还有一些工作要做,甚至更多,如果你想让你的单例在CRT初始化过程中是线程安全的。
答案 4 :(得分:1)
template<class T>
class Resource
{
Resource<T>(const Resource<T>&) = delete;
Resource<T>& operator=(const Resource<T>&) = delete;
static unique_ptr<Resource<T>> m_ins;
static once_flag m_once;
Resource<T>() = default;
public :
virtual ~Resource<T>() = default;
static Resource<T>& getInstance() {
std::call_once(m_once, []() {
m_ins.reset(new T);
});
return *m_ins.get();
}
};
答案 5 :(得分:1)
#pragma once
#include <memory>
#include <mutex>
namespace utils
{
template<typename T>
class Singleton
{
private:
Singleton<T>(const Singleton<T>&) = delete;
Singleton<T>& operator = (const Singleton<T>&) = delete;
Singleton<T>() = default;
static std::unique_ptr<T> m_instance;
static std::once_flag m_once;
public:
virtual ~Singleton<T>() = default;
static T* getInstance()
{
std::call_once(m_once, []() {
m_instance.reset(new T);
});
return m_instance.get();
}
template<typename... Args>
static T* getInstance2nd(Args&& ...args)
{
std::call_once(m_once, [&]() {
m_instance.reset(new T(std::forward<Args>(args)...));
});
return m_instance.get();
}
};
template<typename T> std::unique_ptr<T> Singleton<T>::m_instance;
template<typename T> std::once_flag Singleton<T>::m_once;
}
在不保证100%支持c ++ 11标准的情况下,此版本符合并发免费要求。它还提供了一种灵活的方式来实例化“拥有的”实例。 即使在c ++ 11中,神奇的 static 一词足够了,但开发人员可能仍需要对实例创建进行更多控制。