C++-mutex(待验证)
C++-mutex(待验证)
在使用std::mutex时,应该声明为全局或者类的静态成员变量。
class A
{
public:
void f();
public:
static std::mutex m_Mutex;
}
std::mutex _mu;
void A:f()
{
std::lock_guard<std::mutex> guard1(_mu);
{};
}
void A:f2()
{
_mu.lock();
{};
_mu.unlock();
}
本文来自博客园,作者:Theseus‘Ship,转载请注明原文链接:https://www.cnblogs.com/yongchao/p/17450662.html