水木社区手机版
首页
|版面-C++程序设计语言(CPlusPlus)|
新版wap站已上线
展开
|
楼主
|
同主题展开
|
返回
上一篇
|
下一篇
|
同主题下篇
主题:原子变量读写
confinement
|
2024-05-23 15:51:54
|
不指定内存序啥的
std::atomic<double> a_double;
a_double.store(1.1111);
std::cout << a_double.load();
跟
std::atomic<double> a_double;
a_double = 1.1111;
std::cout << a_double;
的区别是什么?
--
FROM 14.154.144.*
上一篇
|
下一篇
|
同主题下篇
选择讨论区
首页
|
分区
|
热推
BYR-Team
©
2010.
KBS Dev-Team
©
2011
登录完整版