6

我知道标题听起来很疯狂,但我现在正在亲身体验,我想不出任何失败的原因。

我正在使用 getline() 读取文件

在阅读结束时,我调用了tellg()。但是,此调用总是失败(返回值 -1)。

tellg() 不能与 getline() 一起使用是一个已知问题,还是我做错了什么?

我使用的代码很简单,基本上

while(getline(file,line))
{
//tokenize and do other things
}
cout<<file.tellg()<<endl;

有问题的文件是普通磁盘上的一个简单的 txt 文件,我尝试了一个有和没有 CRLF 的文件,它没有区别。

编辑:附加信息

gcc/g++ 4.1.2,Linux (RHEL 5)

EDIT2:根据此线程: http : //www.cplusplus.com/forum/beginner/3599/#msg15540 由于某种 gcc 错误,无法将 tellg 与 getline 一起使用。真的是这样吗?(你在网上看到的不一定都是真的=P)

4

2 回答 2

7

tellg()函数的工作原理是尝试构造一个哨兵对象,然后failbit在返回正确的值之前检查 。如果failbit设置了,则返回 -1。可以在此处找到详细信息,或者,如果您更喜欢更官方的来源并且不介意干读,ISO C++ 标准(27.6.1.3/36a-37对于 C++03,27.7.2.3/39-40对于 C++11)。

哨兵的构造首先检查任何错误标志(如eofbit),如果设置,它设置failbit并返回。有关详细信息,请参见此处(C++03 27.6.1.1.2、C++11 27.7.2.1.3),

因此tellg(),设置文件结束标志后的 a 将失败。您正在读取行直到getline返回 false 的事实意味着eofbit正在设置流,因此您已经到达文件的末尾。

您可以使用以下程序查看行为:

#include <iostream>
#include <iomanip>

int main (void) {
    std::string line;
    while (std::getline (std::cin, line)) {
        if (line.length() > 20)
            line = line.substr(0,17) + "...";
        std::cout << "tellg() returned "
            << std::setw(5) << std::cin.tellg()
            << " after " << line << "\n";
    }
    //std::cin.clear();
    std::cout << "tellg() returns: "
        << std::cin.tellg() << '\n';
    return 0;
}

当您运行它并将文件本身作为输入提供时,您会看到:

tellg() returned    20 after #include <iostream>
tellg() returned    39 after #include <iomanip>
tellg() returned    40 after 
tellg() returned    58 after int main (void) {
tellg() returned    80 after     std::string l...
tellg() returned   124 after     while (std::g...
tellg() returned   156 after         if (line....
tellg() returned   202 after             line ...
tellg() returned   243 after         std::cout...
tellg() returned   291 after             << st...
tellg() returned   333 after             << " ...
tellg() returned   339 after     }
tellg() returned   363 after     //std::cin.cl...
tellg() returned   400 after     std::cout << ...
tellg() returned   437 after         << std::c...
tellg() returned   451 after     return 0;
tellg() returned   453 after }
tellg() returned   454 after 
tellg() returns: -1

如果您取消注释该代码中清除错误状态变量的行,它将起作用:

tellg() returned    20 after #include <iostream>
tellg() returned    39 after #include <iomanip>
tellg() returned    40 after 
tellg() returned    58 after int main (void) {
tellg() returned    80 after     std::string l...
tellg() returned   124 after     while (std::g...
tellg() returned   156 after         if (line....
tellg() returned   202 after             line ...
tellg() returned   243 after         std::cout...
tellg() returned   291 after             << st...
tellg() returned   333 after             << " ...
tellg() returned   339 after     }
tellg() returned   361 after     std::cin.clea...
tellg() returned   398 after     std::cout << ...
tellg() returned   435 after         << std::c...
tellg() returned   449 after     return 0;
tellg() returned   451 after }
tellg() returned   452 after 
tellg() returns: 452

而且,顺便说一句,看起来您所指的错误可能是这个错误(这有点不清楚,因为您链接到的帖子遗憾地缺少任何细节 - 如果发帖人费心支持他的断言会更好它是一个已知的错误,例如,链接到它)。

如果是这种情况,您首先应该注意到的是它在十多年前就已修复,因此,除非您使用的是绝对古老 gcc的 ,否则现在不会成为问题。

于 2013-06-26T01:27:46.757 回答
0

std::istream::tellg如果设置了流的错误标志,则不会告诉您任何信息。根据其规格,

返回:构造一个哨兵对象后,如果fail() != false,返回pos_type(-1)表示失败。否则,返回rdbuf()->pubseekoff(0, cur, in)

参考std::istream::sentry,它设置failifeof已经设置。

但是failandeofclear函数清除了,这就是你需要做的。

while(getline(file,line))
{
//tokenize and do other things
}
file.clear(); // reset error state
cout<<file.tellg()<<endl;

pubseekoff即使您不打扰,该功能仍然有效clear,所以这也有效:

cout<< static_cast< std::streamoff >( file.rdbuf()->pubseekoff(0, std::ios::cur, std::ios::in) )
    <<endl;
于 2013-06-26T01:58:57.647 回答