C++ 线程和 class 方法。内存泄漏问题
C++ threads and class methods. Problem with memory leakage
我在 C++ 中遇到线程问题,我想在不同的 class 对象上并行调用相同的方法。但是,程序遇到了一些问题。它有时会崩溃,有时会运行代码部分,但总是 return 作为 ID 的大得离谱的数字,总是在 0 的位置。
class 正文:
class Gas{
public:
Gas(const int id, const int imax, const int jmax){
id_ = id;
NX_ = imax;
NR_ = jmax;
}
private:
int id_; //id of specimen
int NX_; //quantity of elements in the X direction
int NR_; //quantity of elements in the R direction
std::vector<double> fr_; //molar fraction
std::vector<double> ms_; //mass source
std::vector<double> ms_old_; //mass source value from previous iteration - for source relaxation
};
class方法:
double Gas::initialize(){
int i, j, k;
fr_.resize(NX_ * NR_);
ms_.resize(NX_ * NR_);
ms_old_.resize(NX_ * NR_);
std::cout << "ID: " << id_ << '\n';
k = 0;
for(i = 0; i < NX_; i++){
for(j = 0; j < NR_; j++){
fr_[k] = 0.01;
ms_[k] = 0.;
k++;
}
}
}
代码中的线程实现如下:
std::vector<Gas> gases;
std::vector<Gas*> ptr_gas(6);
for(i = 0; i < 6; i++){ //creating vector holding objects representing specific gases
gases.push_back(Gas(i, 10, 5));
ptr_gas[i] = &gases[i];
}
std::vector<std::thread*> th_gas;
int i = 0;
for(auto &X : ptr_gas){
std::thread *thr = new std::thread(&Gas::initialize, ptr_gas[i]);
th_gas.push_back(thr);
i++;
}
for(auto &X : th_gas){
X->join();
delete X;
}
th_gas.clear();
我放在方法中的 std::cout 的输出是这样的:
ID: ID: 1
4999616
ID: 5
ID: 4
ID: 2
ID: 3
加入第一个创建的线程时似乎有问题。关于如何避免该问题的任何建议?我已经检查了 ptr_gas 个地址,它们是正确的。
std::vector<Gas> gases;
std::vector<Gas*> ptr_gas(6);
for(i = 0; i < 6; i++){ //creating vector holding objects representing specific gases
gases.push_back(Gas(i, grid));
ptr_gas[i] = &gases[i];
}
您在 ptr_gas 中的指针得到 "invalid" 因为 "gases" 将在您 push_back.
时重新分配
我在 C++ 中遇到线程问题,我想在不同的 class 对象上并行调用相同的方法。但是,程序遇到了一些问题。它有时会崩溃,有时会运行代码部分,但总是 return 作为 ID 的大得离谱的数字,总是在 0 的位置。 class 正文:
class Gas{
public:
Gas(const int id, const int imax, const int jmax){
id_ = id;
NX_ = imax;
NR_ = jmax;
}
private:
int id_; //id of specimen
int NX_; //quantity of elements in the X direction
int NR_; //quantity of elements in the R direction
std::vector<double> fr_; //molar fraction
std::vector<double> ms_; //mass source
std::vector<double> ms_old_; //mass source value from previous iteration - for source relaxation
};
class方法:
double Gas::initialize(){
int i, j, k;
fr_.resize(NX_ * NR_);
ms_.resize(NX_ * NR_);
ms_old_.resize(NX_ * NR_);
std::cout << "ID: " << id_ << '\n';
k = 0;
for(i = 0; i < NX_; i++){
for(j = 0; j < NR_; j++){
fr_[k] = 0.01;
ms_[k] = 0.;
k++;
}
}
}
代码中的线程实现如下:
std::vector<Gas> gases;
std::vector<Gas*> ptr_gas(6);
for(i = 0; i < 6; i++){ //creating vector holding objects representing specific gases
gases.push_back(Gas(i, 10, 5));
ptr_gas[i] = &gases[i];
}
std::vector<std::thread*> th_gas;
int i = 0;
for(auto &X : ptr_gas){
std::thread *thr = new std::thread(&Gas::initialize, ptr_gas[i]);
th_gas.push_back(thr);
i++;
}
for(auto &X : th_gas){
X->join();
delete X;
}
th_gas.clear();
我放在方法中的 std::cout 的输出是这样的:
ID: ID: 1
4999616
ID: 5
ID: 4
ID: 2
ID: 3
加入第一个创建的线程时似乎有问题。关于如何避免该问题的任何建议?我已经检查了 ptr_gas 个地址,它们是正确的。
std::vector<Gas> gases;
std::vector<Gas*> ptr_gas(6);
for(i = 0; i < 6; i++){ //creating vector holding objects representing specific gases
gases.push_back(Gas(i, grid));
ptr_gas[i] = &gases[i];
}
您在 ptr_gas 中的指针得到 "invalid" 因为 "gases" 将在您 push_back.
时重新分配