多线程程序中的核心转储:basic_string::_S_construct null无效

Core dump in multithreaded program: basic_string::_S_construct null not valid

本文关键字:string construct null 无效 程序 basic 核心 转储 多线程      更新时间:2023-10-16

我希望4个线程将进入名为read的相同函数,并执行函数中的内容(读取,之后在监视器上打印,并显示所有内容…)。问题:

terminate called after throwing an instance of 'std::logic_error'
  what():  basic_string::_S_construct null not valid
trAborted (core dumped)

代码是:

#include <pthread.h>
#include <unistd.h>
#include <stdio.h>
#include <iostream>
#include <time.h>
#include <cstdlib>
#include <fstream>
#include <string>
using namespace std;
struct v {
    int id;
    char* ad;
    v(int a, char* t) {
        id = a;
        ad = t;
    }
};
int bank = 1000;
pthread_mutex_t mutex;
void* read(void* argument)
{
    cout << "tr";
    v* d;
    int num;
    d = (v*) argument;
    string l = d->ad;
    int n = d->id;
    string x = "";
    ifstream textfile;
    textfile.open(l.c_str());
    while (!textfile.eof()) {
        textfile >> x;
        if (x == "SUB") {
            pthread_mutex_lock(&mutex);
            textfile >> num;
            bank = bank - num;
            cout << "person num " << n << " sub " << num << " dollars and know in the Bank: " << bank << endl;
            pthread_mutex_unlock(&mutex);
        }
        if (x == "ADD") {
            pthread_mutex_lock(&mutex);
            textfile >> num;
            bank = bank + num;
            cout << "person num " << n << " add " << num << " dollars and know in the Bank: " << bank << endl;
            pthread_mutex_unlock(&mutex);
        }
        if (x == "GET") {
            pthread_mutex_lock(&mutex);
            cout << "person num " << n << " look in the Bank: " << bank << endl;
            pthread_mutex_unlock(&mutex);
        }

    }
    textfile.close();
    return 0;
}
int main(void)
{
    pthread_mutex_init(&mutex, NULL);
    int i = 0, j = 0;
    v data1(1, "file1.dat"), data2(2, "file2.dat"), data3(3, "file3.dat"), data4(4, "file4.dat");
    pthread_t t1, t2, t3, t4;
    i = pthread_create(&t1, NULL, read, (void*)&data1);
    if (i != 0) cout << "error" ;
    j = pthread_create(&t2, NULL, read, (void*)&data2);
    if (j != 0) cout << "error" ;
    i = pthread_create(&t3, NULL, read, (void*)&data3);
    if (i != 0) cout << "error" ;
    j = pthread_create(&t4, NULL, read, (void*)&data4);
    if (j != 0) cout << "error" ;
    pthread_exit(NULL);
    return 0;
}

在堆栈上传递线程数据,这几乎从来不是一个好主意。

当你调用pthread_exit时,包含dataN对象的主线程堆栈被释放。如果您的一个线程在pthread_exit之后被调度,它将对已释放的对象进行操作。

最佳解决方案是通过new在堆上分配data对象。