命名空间
变体
操作

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

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

virtual pos_type seekpos( pos_type sp,

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

如果可能,将 std::basic_streambuf::gptr 和/或 std::basic_streambuf::pptr 重新定位到由 sp 指示的位置。

实际上执行 seekoff(off_type(sp), std::ios_base::beg, which).

内容

[编辑] 参数

sp - 流位置,例如通过 seekoff()seekpos() 获取的。
which - 定义输入序列、输出序列或两者是否受影响。它可以是以下常量的组合。
常量 说明
in 影响输入序列
out 影响输出序列

[编辑] 返回值

成功时返回 sp,失败时返回 pos_type(off_type(-1))

[编辑] 说明

seekpos()std::basic_streambuf::pubseekpos() 调用,后者由 std::basic_istream::seekg()std::basic_ostream::seekp() 的单参数版本调用。

[编辑] 示例

#include <sstream>
#include <iostream>
 
struct mybuf : std::stringbuf
{
    mybuf(const std::string& str) : std::stringbuf(str) {}
 
    pos_type seekpos(pos_type sp, std::ios_base::openmode which)
    {
        std::cout << "Before seekpos(" << sp << "), size of the get area is "
                  << egptr() - eback() << " with "
                  << egptr() - gptr() << " read positions available.\n";
 
        pos_type rc = std::stringbuf::seekpos(sp, which);
 
        std::cout << "seekpos() 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("12345");
    std::iostream stream(&buf);
    stream.seekg(2);
}

输出

Before seekpos(2), size of the get area is 5 with 5 read positions available.
seekpos() returns 2.
After the call, size of the get area is 5 with 3 read positions available.

[编辑] 缺陷报告

以下行为更改缺陷报告已追溯应用于以前发布的 C++ 标准。

DR 应用于 发布时的行为 正确行为
LWG 375 C++98 std::ios_base 的静态常量成员被
错误地指定为 std::basic_ios 的成员
已更正
LWG 564 C++98 不清楚如何重新定位 gptr 和/或 pptr 它们通过 seekoff() 重新定位

[编辑] 另请参阅

调用 seekpos()
(std::basic_streambuf<CharT,Traits> 的公有成员函数) [编辑]
[虚函数]
使用相对寻址重新定位输入序列、输出序列或两者的下一个指针
(虚拟保护成员函数) [编辑]
[虚函数]
使用绝对寻址重新定位文件位置
(std::basic_filebuf<CharT,Traits> 的虚拟保护成员函数) [编辑]
[虚函数]
使用绝对寻址重新定位输入序列、输出序列或两者的下一个指针
(std::strstreambuf 的虚拟保护成员函数) [编辑]