std::basic_filebuf<CharT,Traits>::underflow
来自 cppreference.com
< cpp | io | basic filebuf
protected: virtual int_type underflow() |
||
将更多数据读入输入区域。
行为类似于基类 std::basic_streambuf::underflow,除了将数据从关联的字符序列(文件)读入获取区域外,首先将文件中的字节读入一个临时缓冲区(分配为必要的大小),然后使用 std::codecvt::in 注入的区域将外部(通常是多字节)表示形式转换为内部形式,然后使用该形式填充获取区域。如果区域的 std::codecvt::always_noconv 返回 true,则可以跳过转换。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
Traits::to_int_type(*gptr())(待处理序列的第一个字符)如果成功,则为 Traits::eof() 如果失败。
[编辑] 示例
运行此代码
#include <fstream> #include <iostream> struct mybuf : std::filebuf { int underflow() { std::cout << "Before underflow(): size of the get area is " << egptr()-eback() << " with " << egptr()-gptr() << " read positions available\n"; int rc = std::filebuf::underflow(); std::cout << "underflow() returns " << rc << ".\nAfter the call, " << "size of the get area is " << egptr()-eback() << " with " << egptr()-gptr() << " read positions available\n"; return rc; } }; int main() { mybuf buf; buf.open("test.txt", std::ios_base::in); std::istream stream(&buf); while (stream.get()) ; }
可能的输出
Before underflow(): size of the get area is 0 with 0 read positions available underflow() returns 73. After the call, size of the get area is 110 with 110 read positions available Before underflow(): size of the get area is 110 with 0 read positions available underflow() returns -1. After the call, size of the get area is 0 with 0 read positions available
[编辑] 另请参阅
[虚拟] |
从关联的输入序列读取字符到获取区域 ( std::basic_streambuf<CharT,Traits> 的虚拟受保护成员函数) |
[虚拟] |
返回输入序列中可用的下一个字符 ( std::basic_stringbuf<CharT,Traits,Allocator> 的虚拟受保护成员函数) |
[虚拟] |
从输入序列中读取一个字符,但不推进下一个指针 ( std::strstreambuf 的虚拟受保护成员函数) |
[虚拟] |
从关联的文件中读取并推进获取区域中的下一个指针 (虚拟受保护成员函数) |
[虚拟] |
将字符从放置区域写入关联的文件 (虚拟受保护成员函数) |
从输入序列中读取一个字符,但不推进序列 ( std::basic_streambuf<CharT,Traits> 的公共成员函数) |