观看 Herb Sutter 关于 C++ 及其他语言原子的演讲,我瞥见了他关于易于使用的锁定/解锁机制的想法,该机制可能会或可能不会出现在该语言的未来标准中。
该机制看起来像:
atomic{
// code here
}
不想等待未来的标准我尝试自己实现这个,我想出的是:
#define CONCAT_IMPL(A, B) A ## B
#define CONCAT(A, B) CONCAT_IMPL(A, B)
# define atomic(a) { \
static_assert(std::is_same<decltype(a), std::mutex>::value,"Argument must be of type std::mutex !");\
struct CONCAT(atomic_impl_, __LINE__)\
{\
std::function<void()> func;\
std::mutex* impl;\
CONCAT(atomic_impl_, __LINE__)(std::mutex& b)\
{ \
impl = &b;\
impl->lock();\
}\
CONCAT(~atomic_impl_, __LINE__)()\
{ \
func();\
impl->unlock(); \
}\
} CONCAT(atomic_impl_var_, __LINE__)(a);\
CONCAT(atomic_impl_var_, __LINE__).func = [&]()
和用法:
std::mutex mut;
atomic(mut){
// code here
};}
显然,问题是}; 我想删除它。
这有可能吗?