即使在封闭的流中,也会混合fstream流

时间:2010-09-06 01:48:47

标签: c++

我遇到了代码问题。

如果我杀了读段,它可以写得很好。 如果我杀了写部分并且文件已被写入,它可以正常读取。 2彼此不喜欢。这就像写入流没有关闭......虽然它应该是。

有什么问题?

#include "stdafx.h"
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
using namespace System;

int main(array<System::String ^> ^args)
{
 string a[5];
 a[0]= "this is a sentence.";
 a[1]= "that";
 a[2]= "here";
 a[3]= "there";
 a[4]= "why";
 a[5]= "who";

 //Write some stuff to a file
 ofstream outFile("data.txt");     //create out stream
 if (outFile.is_open()){       //ensure stream exists
  for (int i=0; i< 5; i++){
   if(! (outFile << a[i] << endl)){    //write row of stuff
    cout << "Error durring writting line" << endl; //ensure write was successfull
    exit(1);
   }
  }
  outFile.close();
 }

 //Read the stuff back from the file
 if(!outFile.is_open()){  //Only READ if WRITE STREAM was closed.
  string sTemp;   //temporary string buffer
  int j=0;    //count number of lines in txt file

  ifstream inFile("data.txt");  
  if (inFile.is_open()){
   while (!inFile.eof()){
    if(! (getline(inFile, sTemp)) ){    //read line into garbage variable, and ensure read of line was
     if(!inFile.eof()){       //successfull accounting for eof fail condition.
      cout << "Error durring reading line" << endl; 
      exit(1);
     }
    }
    cout << sTemp << endl;  //display line on monitor.
    j++;      
   }
   inFile.close();
  }
  cout << (j -1) << endl;  //Print number lines, minus eof line.
 }

 return 0;
}

2 个答案:

答案 0 :(得分:0)

你有记忆覆盖。

你有六个字符串,但只有五个字符串的维度

 string a[5];
 a[0]= "this is a sentence.";
 a[1]= "that";
 a[2]= "here";
 a[3]= "there";
 a[4]= "why";
 a[5]= "who";

这可能会导致程序的其余部分出现意外行为。

答案 1 :(得分:0)

G ...鞠躬致敬。正在玩文件流,并没有注意我冲过的阵列初始化。

有趣的是,MS VS 2005没有抱怨数组值赋值a [5] =“who”。它让我逃脱它。所以我甚至没有考虑到调试。我可以看出为什么那样可以......我在内存中的下一个连续点中将其写出来并且MS编译器让我逃脱它。据我所知,Linux确实抱怨这种类型的错误。否?

认为读取文件的后面部分是错误的,我注释掉除了行ifstream(“data.txt”)之外的所有读取部分。这导致应用程序崩溃,导致我认为写入流不知何故没有关闭。我认为是的 当读取部分的其余部分被注释掉时,单独的ifstream inFile(“data.txt”)行与所讨论的数组几乎没有关系。然而这就是导致它在VS 2005中崩溃的原因。

无论如何,谢谢! 工作正常。