std::basic_stringbuf<CharT,Traits,Allocator>::seekoff
来自 cppreference.com
< cpp | io | basic stringbuf
protected: virtual pos_type seekoff( off_type off, |
||
如果可能,将 std::basic_streambuf::gptr 和/或 std::basic_streambuf::pptr 重置到对应于缓冲区获取和/或放置区域的开头、结尾或当前位置正好 off 个字符的位置。
- 如果 which 包含 std::ios_base::in 并且该缓冲区为读取打开(即,如果 (which & std::ios_base::in) == std::ios_base::in),则按照下面描述的方式重置读取指针 std::basic_streambuf::gptr 在获取区域内的位置。
- 如果 which 包含 std::ios_base::out 并且该缓冲区为写入打开(即,(which & std::ios_base::out) == std::ios_base::out),则按照下面描述的方式重置写入指针 std::basic_streambuf::pptr 在放置区域内的位置。
- 如果 which 包含 std::ios_base::in 和 std::ios_base::out 并且该缓冲区同时为读取和写入打开(即,(which & (std::ios_base::in | std::ios_base::out)) == (std::ios_base::in | std::ios_base::out)),并且 dir 为 std::ios_base::beg 或 std::ios_base::end,则按照下面描述的方式重置读取和写入指针。
- 否则,该函数失败。
如果 gptr 和/或 pptr 被重置,则按如下方式进行。
1) 确定类型为
off_type
的新指针偏移量 newoff2) 如果要重置的指针为空指针,并且 newoff 将非零,则该函数失败。
3) 如果 newoff + off < 0(重置将使指针移动到缓冲区开头之前)或 newoff + off 将指向缓冲区结尾之外(或如果使用 超分配,则指向缓冲区中最后一个已初始化字符之外),则该函数失败。
4) 否则,指针将被赋值,就像使用 gptr() = eback() + newoff + off 或 pptr() = pbase() + newoff + off 一样。
内容 |
[编辑] 参数
off | - | 设置下一个指针的位置的相对位置 | ||||||||
dir | - | 定义要应用相对偏移量的基本位置。它可以是以下常量之一
| ||||||||
which | - | 定义输入序列、输出序列或两者是否受影响。它可以是以下常量之一或它们的组合
|
[编辑] 返回值
成功时为 pos_type(newoff),失败时或如果 pos_type
无法表示结果流位置时为 pos_type(off_type(-1))。
[编辑] 示例
运行此代码
#include <iostream> #include <sstream> int main() { std::stringstream ss("123"); // in/out std::cout << "put pos = " << ss.tellp() << " get pos = " << ss.tellg() << '\n'; // absolute positioning both pointers ss.rdbuf()->pubseekoff(1, std::ios_base::beg); // move both 1 forward std::cout << "put pos = " << ss.tellp() << " get pos = " << ss.tellg() << '\n'; // try to move both pointers 1 forward from current position if (-1 == ss.rdbuf()->pubseekoff(1, std::ios_base::cur)) std::cout << "moving both pointers from current position failed\n"; std::cout << "put pos = " << ss.tellp() << " get pos = " << ss.tellg() << '\n'; // move the write pointer 1 forward, but not the read pointer // can also be called as ss.seekp(1, std::ios_base::cur); ss.rdbuf()->pubseekoff(1, std::ios_base::cur, std::ios_base::out); std::cout << "put pos = " << ss.tellp() << " get pos = " << ss.tellg() << '\n'; ss << 'a'; // write at put position std::cout << "Wrote 'a' at put position, the buffer is now " << ss.str() << '\n'; char ch; ss >> ch; std::cout << "reading at get position gives '" << ch << "'\n"; }
输出
put pos = 0 get pos = 0 put pos = 1 get pos = 1 moving both pointers from current position failed put pos = 1 get pos = 1 put pos = 2 get pos = 1 Wrote 'a' at put position, the buffer is now 12a reading at get position gives '2'
[编辑] 缺陷报告
以下行为更改缺陷报告被追溯应用于以前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
LWG 55 | C++98 | seekoff 返回未定义的失败时为无效流位置 |
pos_type(off_type(-1)) 在失败时返回 |
LWG 375 | C++98 | std::ios_base 的静态常量成员 被错误地指定为 std::basic_ios 的成员 |
已更正 |
LWG 432 | C++98 | seekoff 即使在 newoff + off指向最后一个初始化字符之后时,也可能成功 |
seekoff 失败在这种情况下 |
LWG 453 | C++98 | 重新定位为零的空 gptr() 和/或空 pptr() 总是失败 |
在这种情况下,它可以成功 |
LWG 563 | C++98 | 结束指针不能用于计算 newoff,因为它可能 在解决 LWG 问题 432 之后无法被程序精确控制 |
使用高水位 指针代替 |
[编辑] 另请参阅
调用 seekoff() ( std::basic_streambuf<CharT,Traits> 的公有成员函数) | |
[虚拟] |
使用绝对寻址重新定位输入序列、输出序列或两者中的下一个指针 (虚拟受保护的成员函数) |
[虚拟] |
使用相对寻址重新定位文件位置 ( std::basic_filebuf<CharT,Traits> 的虚拟受保护的成员函数) |
[虚拟] |
使用相对寻址重新定位输入序列、输出序列或两者中的下一个指针 ( std::strstreambuf 的虚拟受保护的成员函数) |