std::basic_stringbuf<CharT,Traits,Allocator>::seekoff
来自 cppreference.cn
< cpp | io | basic stringbuf
protected: virtual pos_type seekoff( off_type off, |
||
若可能,将 std::basic_streambuf::gptr 和/或 std::basic_streambuf::pptr 重定位到精确地从缓冲区的获取区(get area)和/或放置区(put area)的起始、结尾或当前位置偏移 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,则如下文所述重定位读写指针二者。
- 否则,此函数失败。
1) 确定类型为
off_type
的新指针偏移 newoff2) 若要重定位的指针是空指针且 newoff 不为零,则此函数失败。
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++ 标准。
缺陷报告 | 应用于 | 发布时的行为 | 正确的行为 |
---|---|---|---|
LWG 55 | C++98 | seekoff 失败时返回未定义的非法流位置 |
pos_type(off_type(-1)) 在失败时返回 |
LWG 375 | C++98 | std::ios_base 的静态常量成员被 错误地指定为 std::basic_ios 的成员 |
已更正 |
LWG 432 | C++98 | 即使 newoff + off 会指向 最后一个已初始化字符之后, seekoff 也可能成功 |
seekoff 失败在这种情况下 |
LWG 453 | C++98 | 以零的新偏移重定位空 gptr() 和/或空 pptr() 总是失败 |
在这种情况下可以成功 |
LWG 563 | C++98 | 结束指针不能用于计算 newoff,因为它在解决 LWG issue 432 后 不能被程序精确控制 |
改用高水位 指针 |
[编辑] 参阅
调用 seekoff() ( std::basic_streambuf<CharT,Traits> 的公开成员函数) | |
[虚] |
使用绝对寻址重新定位输入序列、输出序列或两者的下一个指针 (虚保护成员函数) |
[虚] |
使用相对地址重新定位文件位置 ( std::basic_filebuf<CharT,Traits> 的虚保护成员函数) |
[虚] |
使用相对寻址重新定位输入序列、输出序列或两者的下一个指针 ( std::strstreambuf 的虚保护成员函数) |