什么是等价于ifstream :: eof :: fail和:: tellg的std :: filebuf

时间:2016-07-14 16:07:37

标签: c++

如果使用std::filebuf,是否还有以下功能? :

std::ifstream::eof
std::ifstream::fail
std::ifstream::tellg

如果是,哪个?

1 个答案:

答案 0 :(得分:3)

没有。这些事情与 streams 有关,而不是那些流使用的数据缓冲区。

std::ifstream的全部目的是在std::filebuf之上添加类似的功能。