标签: c++11
我有:
int* p = 0xf
如何将p包裹为std::atomic<int>? 我想要一些东西:
p
std::atomic<int>
std::atomic<int> wp = wrap(p); wp.store(100);
然后wp.store(100)将100存储到0xf
wp.store(100)
100
0xf