1 Star 0 Fork 0

BostonHsu/PuringMyCPlusPlusTech

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
new_atomic.cpp 418 Bytes
一键复制 编辑 原始数据 按行查看 历史
Boston 提交于 2023-08-11 08:52 . Add a new example of using atomic
#include <iostream>
#include <atomic>
#include <thread>
std::atomic<int> counter(0);
void incrementCounter() {
for (int i = 0; i < 1000000; ++i) {
counter.fetch_add(1, std::memory_order_relaxed);
}
}
int main() {
std::thread t1(incrementCounter);
std::thread t2(incrementCounter);
t1.join();
t2.join();
std::cout << "Counter value: " << counter << std::endl;
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/bostonhsu/puring-my-cplus-plus-tech.git
[email protected]:bostonhsu/puring-my-cplus-plus-tech.git
bostonhsu
puring-my-cplus-plus-tech
PuringMyCPlusPlusTech
master

搜索帮助