1 Star 0 Fork 3

uss-enterprise/深入应用C++11:代码优化与工程级应用 的实践代码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
5-8.cpp 1.06 KB
一键复制 编辑 原始数据 按行查看 历史
#include <thread>
#include <iostream>
#include <mutex>
#include <condition_variable>
#include <list>
#include <atomic>
using std::cout;
using std::endl;
struct AtomicCounter{
//std::atomic<int> value;
int value = 0;
void increment() {
++value;
}
void decrement()
{
--value;
}
int get()
{
//return value.load();
return value;
}
};
AtomicCounter st;
void fun1()
{
for(int i = 0; i < 10; i++)
{
std::this_thread::sleep_for (std::chrono::milliseconds(10));
st.increment();
}
}
void fun2()
{
for(int i = 0; i < 10; i++)
{
std::this_thread::sleep_for (std::chrono::milliseconds(10));
st.decrement();
}
}
void fun3()
{
for(int i = 0; i < 10; i++)
{
std::this_thread::sleep_for (std::chrono::milliseconds(10));
cout <<"Get : " << st.get() << endl;
}
}
int main(void)
{
st.value = 0;
std::thread t1(fun1);
std::thread t2(fun2);
std::thread t3(fun3);
t3.join();
t1.join();
t2.join();
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/uss-enterprise/c11_book_learned_code.git
[email protected]:uss-enterprise/c11_book_learned_code.git
uss-enterprise
c11_book_learned_code
深入应用C++11:代码优化与工程级应用 的实践代码
master

搜索帮助