std::basic_istream<CharT,Traits>::seekg

来自cppreference.com
< cpp‎ | io‎ | basic istream
 
 
 
 
basic_istream& seekg( pos_type pos );
(1)
basic_istream& seekg( off_type off, std::ios_base::seekdir dir );
(2)

设置当前关联 streambuf 对象的输入位置指示器。

在进行其他任何操作前,seekg 都会清除 eofbit

(C++11 起)

seekg 表现为无格式输入函数 (UnformattedInputFunction) ,除了不影响 gcount()。在构造并检查 sentry 对象后,

1) 设置输入位置指示器为绝对(相对于文件起始)值 pos。具体而言,执行 rdbuf()->pubseekpos(pos, std::ios_base::in) 。失败的情况下会调用 setstate(std::ios_base::failbit)
2) 设置输入位置指示器为相对于 dir 所定义位置的 off。具体而言,执行 rdbuf()->pubseekoff(off, dir, std::ios_base::in)。失败的情况下会调用 setstate(std::ios_base::failbit)

参数

pos - 设置输入位置指示器到的绝对位置。
off - 设置输入位置指示器到的相对位置。
dir - 定义应用相对偏移到的基位置。它可以是下列常量之一:
常量 解释
beg 流的开始
end 流的结尾
cur 流位置指示器的当前位置

返回值

*this

异常

在出现错误(错误状态标志不是 goodbit)并且将 exceptions() 设置为对该状态抛出时会抛出 failure

如果内部操作抛出异常,那么捕获它并设置 badbit。如果对 badbit 设置了 exceptions(),那么就会重抛该异常。

示例

#include <iostream>
#include <string>
#include <sstream>
 
int main()
{
    std::string str = "Hello, world";
    std::istringstream in(str);
    std::string word1, word2;
 
    in >> word1;
    in.seekg(0); // 回溯
    in >> word2;
 
    std::cout << "word1 = " << word1 << '\n'
              << "word2 = " << word2 << '\n';
}

输出:

word1 = Hello,
word2 = Hello,

缺陷报告

下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。

缺陷报告 应用于 出版时的行为 正确行为
LWG 129 C++98 没有途径指示操作失败 失败时会设置 failbit
LWG 136 C++98 seekg 可以设置输出流 只设置输入流
LWG 537 C++98 off 的类型是 off_type& 改成 off_type

参阅

返回输入位置指示器
(公开成员函数)
返回输出位置指示器
(std::basic_ostream<CharT,Traits> 的公开成员函数)
设置输出位置指示器
(std::basic_ostream<CharT,Traits> 的公开成员函数)