C ++从文件读取fstream数据不会返回正确的值。 inputFile.tellg返回-1

时间:2019-02-24 04:38:13

标签: c++ file-io fstream ifstream file-pointer

我正在尝试从输入文件中读取数据,输入文件的第一行包含一个整数(代表文件中列出的图像数),第二行包含一个浮点数(这用于主程序中的其他计算) ),然后在每行中以图片文件名结尾的值都浮动在同一data.txt文件中。 data.txt文件的最后一行包含对数据用途的简要说明,但程序不会读取。 当我尝试读取数据并将其打印到屏幕上时,值不正确。 data.txt文件的第一行是5,但是当我打印出来时,我得到的是0,这是我将其初始化的内容。第二行是我相信的浮点值,它也将输出为0,这也是它也要初始化的值。 其余数据由while循环读取,仅打印部分数据,但不打印任何内容。 我插入了cout << inputFile.tellg << endl;语句以查看文件指针指向的位置,但返回-1。 我完全被这个困扰。任何见识将不胜感激。 谢谢您的时间和专业知识。

请随函附上data.txt文件和main.cpp文件的示例副本。

data.txt

5
5.50e+11
 4.4960e+11  0.0000e+00  0.0000e+00  4.9800e+04  5.9740e+24       cat.gif
 3.2790e+11  0.0000e+00  0.0000e+00  3.4100e+04  6.4190e+23       dog.gif
 2.7900e+10  0.0000e+00  0.0000e+00  7.7900e+04  3.3020e+23     mouse.gif
 0.0000e+00  0.0000e+00  0.0000e+00  6.0000e+00  1.9890e+30  squirrel.gif
 5.0820e+11  0.0000e+00  0.0000e+00  7.5000e+04  4.8690e+24       fox.gif

This file contains an example of data stored in a text file 

main.cpp

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

using namespace std;

int main( int argc, char* argv[ ] )
{
      float xPosition, yPosition;
      float xVelocity, yVelocity;
      float animalMass;
      string imgFilename;
      string line;
      istringstream inputStream( line );
      auto N = 0;   // Number of items
      auto R = 0; // Real number from file

  cout << "begin" << endl;
  if( argc > 1 )
  {
    string fileName = argv[ 1 ];
    ifstream inputFile( fileName );
    inputFile.open( fileName, ios::in );

    if( !inputFile.is_open( ))
    {
      cout << setw( 5 ) << " " << "Could not open file " << fileName << "." << endl;
      cout << setw( 5 ) << " " << "Terminating program." << endl;
      exit( 1 );
    }
    else
    {
      cout << inputFile.tellg() << endl;
      inputFile >> N;
      inputFile >> R;
      cout << "N is now " << N << endl;
      cout << "R is now " << R << endl;
      cout << inputFile.tellg() << endl;

      while( inputFile >> xPosition >> yPosition
                       >> xVelocity >> yVelocity
                       >> animalMass   >> imgFilename )
      {
        cout << xPosition << " " << imgFilename << endl;
      }       
    }
  } 
}

输出如下:

os:〜/ Desktop / test $ ./main data.txt

开始

-1

N现在为0

R现在为0

-1


我至少希望N为5,因为我可能输入错误的类型 我不确定,一旦读取数据,就需要R或更多的计算。 我只是不明白为什么文件指针显示它在位置-1。

1 个答案:

答案 0 :(得分:0)

该问题很可能是由R的声明引起的。

auto R = 0;

以上声明使R成为int,而不是doublefloat

使用

double R = 0;

您可以使用

auto R = 0.0;

但我不建议这样做。当类型较长且难以输入时,使用auto是有意义的。对于简单类型,如上所述,最好是显式的。

如果您需要将float用于R,请使用

float R = 0;