我想知道为什么istream :: get sets failbit和eofbit在一起。
std :: getline的行为不同:它在遇到文件末尾时设置eofbit,在尝试读取文件末尾时设置failbit。所以你可以写:
while (std::getline(is, s) {
blablabla... // gets executed once after end of file has been reached
}
而如果使用std :: get
定义自己的getSthg函数std::istream& myOwnGetLine(std::istream& is, std::string& s) {
char c;
while (is.get(c)) {
blablabla...
}
return is;
}
然后:
while (myOwnGetLine(is, s)) { // fails if eof has been reached
blablabla // won't get executed for the last line of the stream
}
那么:我做错了什么?我提出的解决方法是:
std::istream& myOwnGetLine(std::istream& is, std::string& s) {
*if (is.rdstate() & std::ios::eofbit) {
is.clear(std::ios::failbit);
return is;
}*
char c;
while (is.get(c)) {
blablabla...
}
*if (is.rdstate() & std::ios::eofbit) {
is.clear(std::ios::eofbit);
}*
return is;
}
但这听起来不对......
答案 0 :(得分:2)
不幸的是,使用istream::get
制作getline
函数会导致该函数内部出现一些尴尬的代码,因为根据规范,它会同时设置eofbit
和failbit
它重新结束文件结束。标准istream::getline
解决此问题的方法是使用rdbuf()
的{{1}}来检查值。看起来这可能是解决这个问题的唯一方法(除了操纵流的失败状态,就是这样)