0

此代码应读取两个 .dat 文件,其格式为:

xy 强度 例如:

1 1 70
1 2 0.3
1 3 5

它将读入一个文件并显示正确的信息,并且与另一个文件相同,但是当我尝试读入两个文件时,尽管编译正确,但仍出现“分段错误”。我不是 100% 确定为什么,因为一次处理一个文件时,它可以工作,所以我认为它可能不像我在文件中读取的方式。一旦我可以进行这项工作,我将转移到向量,但我仍在学习它们并想先确定数组。

int main()
{

  std::ifstream file1("p001_1.dat");

  std::ifstream file1_2("p001_2.dat");

    double intensity;
    int i;
    int j;
    double pic1[1392][1040]; //number of pixels
    double pic1_2[1392][1040];

    // reads in file creating an array [x][y] = intensity

    cout<<"Reading in: file1"<<endl;

    if (file1.is_open())
      {
        file1.seekg(0);
        while (!file1.eof())
          {
          file1 >> i >> j >> intensity;
            pic1[i][j] = intensity;
            //cout<<i<<endl
        }
        file1.close();
        //file1.clear();
    }
    else {
      cout << "Error, cannot open file 1"; }

    cout << "Reading in file 2" << endl;    

    if (file1_2.is_open())
      {
        file1_2.seekg(0);
        while (!file1_2.eof())
          {
        file1_2 >> i >> j >> intensity; //
        pic1_2[i][j] = intensity;
          }
        file1_2.close();
        //file1_2.clear();
        //cout<<i<<endl;
      }
    else {
      cout << "Error, cannot open file 1_2"; }

//A LOAD OF CALCULATIONS//
4

2 回答 2

0

当你运行只读取一个文件的代码时,你只声明了一个数组还是两个?您的数组都非常大,并且将被放置在您的应用程序堆栈中,堆栈空间不能增长太大是很正常的。作为一个简单的测试,只需将这些变量移动为全局变量,看看你的崩溃是否消失了。

于 2013-03-14T11:37:14.473 回答
0

您很可能会收到 StackOverflow 错误

这对堆栈来说太多了:

double pic1[1392][1040]; //number of pixels
double pic1_2[1392][1040];

将它们main移到功能之外以快速修复它。否则使用动态分配,甚至更好std::vector

于 2013-03-14T11:38:44.087 回答