C++11 std::atomic
2021/7/15 22:07:22
本文主要是介绍C++11 std::atomic,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
什么是原子数据类型?
从功能上看,简单地说,原子数据类型不会发生数据竞争,能直接用在多线程中而不必我们用户对其进行添加互斥资源锁的类型。从实现上,大家可以理解为这些原子类型内部自己加了锁。
#include <thread> #include <atomic> #include <iostream> #include <list> using namespace std; // 使用原子类型 // atomic_int iCount(0); void threadFun1(void) { for (int i = 0; i < 1000; i++) { printf("iCount: %d\r\n", iCount++); } } void threadFun2(void) { for (int i = 0; i < 1000; i++) { printf("iCount: %d\r\n", iCount--); } } int main(void) { std::list<thread> lstThread; for(int i = 0; i < 100; i++) { lstThread.push_back(thread(threadFun1)); } for (int i = 0; i < 100; i++) { lstThread.push_back(thread(threadFun2)); } for (auto& th : lstThread) { th.join(); } int x = iCount.load(memory_order_relaxed); printf("finally iCount:%d\r\n", x); // return value return 0; }
运行结果:
不用原子类型数据:
#include <thread> #include <atomic> #include <iostream> #include <list> using namespace std; // 不用原子类型 int iCount = 0; void threadFun1(void) { for (int i = 0; i < 1000; i++) { printf("iCount: %d\r\n", iCount++); } } void threadFun2(void) { for (int i = 0; i < 1000; i++) { printf("iCount: %d\r\n", iCount--); } } int main(void) { std::list<thread> lstThread; for(int i = 0; i < 100; i++) { lstThread.push_back(thread(threadFun1)); } for (int i = 0; i < 100; i++) { lstThread.push_back(thread(threadFun2)); } for (auto& th : lstThread) { th.join(); } printf("finally iCount:%d\r\n", iCount); // return value return 0; }
运行结果:
小结:
Linux环境下运行,参数配置为:g++ -std=c++11 -pthread 14.atomictest.cpp
,结果均为一样!
这篇关于C++11 std::atomic的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-23DevExpress 怎么实现右键菜单(Context Menu)显示中文?-icode9专业技术文章分享
- 2024-12-22怎么通过控制台去看我的页面渲染的内容在哪个文件中呢-icode9专业技术文章分享
- 2024-12-22el-tabs 组件只被引用了一次,但有时会渲染两次是什么原因?-icode9专业技术文章分享
- 2024-12-22wordpress有哪些好的安全插件?-icode9专业技术文章分享
- 2024-12-22wordpress如何查看系统有哪些cron任务?-icode9专业技术文章分享
- 2024-12-21Svg Sprite Icon教程:轻松入门与应用指南
- 2024-12-20Excel数据导出实战:新手必学的简单教程
- 2024-12-20RBAC的权限实战:新手入门教程
- 2024-12-20Svg Sprite Icon实战:从入门到上手的全面指南
- 2024-12-20LCD1602显示模块详解