尝试运行已编译的C ++代码时出现Segmentation Fault 11

时间:2019-03-11 17:34:08

标签: c++ compiler-errors segmentation-fault

我正在为uni分配作业(.csv-parser)。在编译后尝试运行代码时,它会返回SegFault 11。

这是我的代码:

#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <sstream>

int main (int argc, char** argv) {

string line;
string buffer;

vector<vector<string> > database;
vector<string> dataset;

//bool start = true;

ifstream denkmaeler;
denkmaeler.open(argv[1]);
ifstream denkmal;
denkmal.open(argv[1]);

int semic = 1;
//int semic2 = 1;
int zaehler = 0;

if (denkmal.is_open()){
    (getline(denkmal, buffer));

    for (int i = 0; i < buffer.length(); i++ ){
        if(buffer[i] == ';'){
            semic++;}

    }
}

denkmal.close();

if(denkmaeler.is_open()) {
    //if (counter < 1) {
    while (getline(denkmaeler, buffer));
    if (line.back() == *argv[2]) {
        line += argv[2];
        stringstream ss(line);
        while (getline(ss, line, *argv[2])) {
            dataset.push_back(line);
            database.push_back(dataset);
            dataset.clear();

        }
    }


}

for (int x=0, y=semic; x < semic; y=database.size(), x++, y++){
    if (x > semic){
        x=0;
        cout << '\n' << "-------------------------------" << '\n' << endl;

    }
    if (database[y][0].length() == 0){
        database[y][0] = "not available";
    }

    cout << database[x][0] << " : "  << database[y][0] << endl;
}
}

如果有人能够指出我的错误,我将非常感激。我读了一些帖子,指出问题可能是数组,但不确定如何。

1 个答案:

答案 0 :(得分:0)

对于细分错误,最好使用调试工具,它可以准确地向您显示错误的位置(哪一行)!

我正在使用gdb,我建议您用Google