命名空间
变体
操作

std::basic_stringbuf<CharT,Traits,Allocator>::seekoff

来自 cppreference.cn
< cpp‎ | io‎ | basic stringbuf
 
 
 
 
protected:

virtual pos_type seekoff( off_type off,
                          std::ios_base::seekdir dir,

                          std::ios_base::openmode which = std::ios_base::in | std::ios_base::out );

若可能,将 std::basic_streambuf::gptr 和/或 std::basic_streambuf::pptr 重定位到精确地从缓冲区的获取区(get area)和/或放置区(put area)的起始、结尾或当前位置偏移 off 个字符的位置。

若重定位 gptr 和/或 pptr,则按如下进行

1) 确定类型为 off_type 的新指针偏移 newoff
a)dir == std::ios_base::beg,则 newoff 为零
b)dir == std::ios_base::cur,则 newoff 是指针的当前位置(gptr() - eback()pptr() - pbase()
c)dir == std::ios_base::end,则 newoff 是缓冲区整个初始化部分的长度(若使用过分配,则为高水位指针减去起始指针)
2) 若要重定位的指针是空指针且 newoff 不为零,则此函数失败。
3)newoff + off < 0 (重定位会将指针移动到缓冲区起始之前)或若 newoff + off 会指向缓冲区结尾之后(或若使用过分配,则为最后一个已初始化字符之后),则函数失败。
4) 否则,如同通过 gptr() = eback() + newoff + offpptr() = pbase() + newoff + off 赋值该指针。

目录

[编辑] 参数

off - -
dir - 定义应用相对偏移量的基本位置。它可以是以下常量之一
常量 解释
beg 流的开始
end 流的结束
cur 流位置指示器的当前位置
which - -
常量 解释
in 影响输入序列
out 影响输出序列

[编辑] 返回值

成功时为 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 的虚保护成员函数) [编辑]