C++ streambuf - sgetc
描述
它用于获取当前字符并返回受控输入序列当前位置的字符,而不修改当前位置。
声明
以下是 std::basic_streambuf::sgetc 的声明。
int_type sgetc();
参数
none
返回值
它返回受控输入序列当前位置的字符,使用成员 traits_type::to_int_type 转换为 int_type 类型的值。
异常
Basic guarantee − 如果抛出异常,则流缓冲区处于有效状态。
数据竞争
它修改流缓冲区对象。
示例
在下面的例子中解释了 std::basic_streambuf::sgetc。
#include <iostream> #include <fstream> int main () { std::ifstream istr ("sample.txt"); if (istr) { std::streambuf * pbuf = istr.rdbuf(); do { char ch = pbuf->sgetc(); std::cout << ch; } while ( pbuf->snextc() != std::streambuf::traits_type::eof() ); istr.close(); } return 0; }