与 atoi 表达式相关的 C++ 分段错误

C++ segmentation fault related to atoi expression

我是 C++ 编程的新手,我正在努力学习。目前我正在开发一个程序,该程序从一个文件中读取,该文件在后续行中有一个字符串,后跟 3 个整数。

示例:(这是第一组数据,还有其他九组数据,格式如下)

Linus too good
100
23
210

字符串存储在一维数组中,而整数存储在二维数组中。

到目前为止我有这个:

#include <stdlib.h>
#include <iostream>
#include <fstream>
#include <string>

void FileToArray(); 

using namespace std;

int main() 
{
    FileToArray();

    return 0;
}

void FileToArray()
{
    ifstream inFile;

    inFile.open("bowlers2.txt");

    const int STRING_ARRAY_SIZE = 10;
    const int NUM_ROW_SIZE = 3;
    const int NUM_COL_SIZE = 10;

    double scores[NUM_ROW_SIZE][NUM_COL_SIZE];
    string names[STRING_ARRAY_SIZE];
    string mystring;

    for(int r = 0; r < 10; r++)
    {
        getline(inFile, names[r]);

        for(int c = 0; c < 3; c++)
        {
            getline(inFile, mystring);
            scores[r][c] = atoi(mystring.c_str());
        }
    }
    cout << "The names are:\n";
    for (int i = 0; i < STRING_ARRAY_SIZE; i++)
    {
        cout << names[i] << "\n";
        for (i = 0; i < NUM_COL_SIZE; i++)
        {
            for (int j = 0; j < NUM_ROW_SIZE; j++)
            {
            cout << scores[i][j] << "\n";
            }
        }
    }
}
inFile.close();

我隔离出来了,scores[r][c] = atoi(mystring.c_str());并且程序运行,尽管它给出了垃圾值。 这是输出:

The names are:
Linus too good
0
2.96439e-323
6.63467e-315
6.95306e-310
6.94939e-310
1.4822e-323
2.52023e-320
6.94939e-310
6.94939e-310
6.95306e-310
6.91692e-323
7.6287e+228
6.59695e-310
6.94939e-310
6.95306e-310
6.95306e-310
7.41098e-323
3.44197e+175
1.69599e+161
5.83684e-310
6.95306e-310
6.94939e-310
0
6.94939e-310
0
0
0
0
1.02437e-316
4.04739e-320

提前感谢您对此提供的任何帮助。

您声明了最大行数 = 3 和列数 = 10 的数组,但您正在反向访问。所以交换

scores[r][c] = atoi(mystring.c_str());

scores[c][r] = atoi(mystring.c_str());

我想你可能得先调试一下,然后再梳理一下逻辑。

一个错误出现在您尝试打印结果的嵌套循环中,并且您在外循环和内循环中使用了两次 i。 (我不认为内部循环 for (i = 0; i < NUM_COL_SIZE; i++) 是必要的。)

另一个错误是当您声明二维数组时 scores。尝试 double scores[10][3];

我已经用这两个修复程序尝试了您的代码并且它有效。

欢迎使用 C++ 和有趣的调试!