扫二维码与项目经理沟通
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流
多线程编程中 开优化选项时要谨慎否则容易掉坑里
先看下面的代码,开起两个线程,第二个线程把第一个线程的循环条件置成false 按逻辑来说这个应该能顺利结束的不过如果用
g++ -O3 -o multiThread multiThread.cpp -lpthread
编译的话TestThread1是退不出来的,只有 g_brun 加上 volatile关键字才能正常退出
因为在-O3优化选项下 执行TestThread1时g_brun会先读到寄存器中,编译器发现这个函数中g_brun没有任何改变所以不会再去内存中取值直接用寄存器中的备份,在TestThread2中改变了g_brun在内存中的值,对TestThread1中g_brun的寄存器备份没有任何影响。
加上volatile表示对该变量不优化每次都去内存中取值。
创新互联公司于2013年成立,是专业互联网技术服务公司,拥有项目网站制作、成都网站制作网站策划,项目实施与项目整合能力。我们以让每一个梦想脱颖而出为使命,1280元玉龙做网站,已为上家服务,为玉龙各地企业和个人服务,联系电话:13518219792
#include
#include
#include
using namespace std;
//volatile bool g_brun = true;
bool g_brun = true;
void* TestThread1(void* arg)
{
cout << "TestThread1 进入" << endl;
long long ll = 0;
while(g_brun)
ll ++;
cout << "TestThread1 退出 ll:" << ll << endl;
}
void* TestThread2(void* arg)
{
cout << "TestThread2 进入" << endl;
g_brun = false;
cout << "TestThread2 退出 设置 g_brun = false" << endl;
}
int main()
{
pthread_t threadId1;
pthread_create(&threadId1, NULL, TestThread1, NULL);
usleep(1000000); // 保证TestThread1先执行
pthread_t threadId2;
pthread_create(&threadId2, NULL, TestThread2, NULL);
pthread_join(threadId1,NULL);
pthread_join(threadId2,NULL);
return 0;
}
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流