c – ifstream tellg()没有返回正确的位置

前端之家收集整理的这篇文章主要介绍了c – ifstream tellg()没有返回正确的位置前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
代码如下:

代码

#include <iostream>
#include <fstream>

using namespace std;

int main(void)
{
    int id;
    char name[50];
    ifstream myfile("savingaccount.txt");  //open the file
    myfile >> id;
    cout << myfile.tellg(); //return 16? but not 7 or 8
    cout << id ;

    return 0;
}

文件内容

1800567
Ho Rui Jang
21
Female
Malaysian
012-4998192
20,Lorong 13,Taman Patani Janam
Melaka
Sungai Dulong

问题 :

1.)我希望tellg()返回7或8,因为第一行1800567是7位数,所以流指针应该放在这个数字之后和字符串“Ho Rui Jang”之前,但是tellg()返回16为什么会这样?

解决方法

这似乎更像是编译器错误(可能是gcc)

使用以下代码: –

#include <iostream>
#include <fstream>
using namespace std;
int main(void)
{
    int id;
    char name[50];
    ifstream myfile("savingaccount.txt");  //open the file
    cout << myfile.tellg()<<endl;
    myfile >> id;
    streamoff pos=myfile.tellg();
    cout <<"pos= "<<pos<<'\n';
    cout <<"id= " << id<<'\n' ;
    return 0;
}

以下是输出: –

在图像中,inpstr.exe是从Visual Studio的cl生成的,而inp.exe是从g生成的(gcc版本4.6.1(tdm-1))

原文链接:https://www.f2er.com/c/239718.html

猜你在找的C&C++相关文章