将内存地址包装为std :: atomic

时间:2018-07-23 09:43:43

标签: c++11

我有:

int* p = 0xf

如何将p包裹为std::atomic<int>? 我想要一些东西:

std::atomic<int> wp = wrap(p);
wp.store(100); 

然后wp.store(100)100存储到0xf

0 个答案:

没有答案