在C ++中使用以下内容:
#include <mutex>std::mutex _mutex;void f(){ std::unique_lock<std::mutex> lock(_mutex); // access your resource here.}
欢迎分享,转载请注明来源:内存溢出
在C ++中使用以下内容:
#include <mutex>std::mutex _mutex;void f(){ std::unique_lock<std::mutex> lock(_mutex); // access your resource here.}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)