我在大约一小时前开始做线程,并且在调试模式完成预期和发布模式时会出现问题。
调试
g ++ -c -g -MMD -MP -MF build / Debug / GNU-Linux-x86 / foo.o.d -o build / Debug / GNU-Linux-x86 / foo.o foo.cpp
无论2222222222
版本
g ++ -c -O2 -MMD -MP -MF build / Release / GNU-Linux-x86 / foo.o.d -o build / Release / GNU-Linux-x86 / foo.o foo.cpp
无论
RUN FAILED(退出值1,总时间:49ms)
类
#include "foo.h"
#define NUMINSIDE 10
foo::foo()
{
inside = new int[NUMINSIDE];
}
void foo::workerFunc(int input)
{
for (int i = 0; i < NUMINSIDE; i++)
{
inside[i] += input;
}
}
void foo::operate()
{
std::cout << "Whatever" << std::endl;
boost::thread thA(boost::bind(&foo::workerFunc, this, 1));
boost::thread thB(boost::bind(&foo::workerFunc, this, 1));
thA.join();
thB.join();
for (int i = 0; i < NUMINSIDE; i++)
{
std::cout << this->inside[i] << std::endl;
}
}
主要
int main(int argc, char** argv)
{
foo* myFoo = new foo();
myFoo->operate();
return 0;
}
答案 0 :(得分:1)
您尚未初始化inside
数组。将初始化代码添加到foo::foo()
foo::foo()
{
inside = new int[NUMINSIDE];
for (int i = 0; i < NUMINSIDE; i++)
{
inside[i] = 0;
}
}
它仅适用于调试,因为它是未定义的行为。