pos_type seekoff (off_type off, ios_base::seekdir way, ios_base::openmode which = ios_base::in | ios_base::out);
-1
,但派生类应覆盖此行为以适当地修改内部指针:basic_filebuf 和 basic_stringbuf 都覆盖此虚拟成员函数,以将由 which 指定的内部指针设置为相对于 way 指定方向的偏移量 off。值 | 偏移量相对于... |
---|---|
ios_base::beg | 流缓冲区的开始 |
ios_base::cur | 流缓冲区中的当前位置 |
ios_base::end | 流缓冲区的末尾 |
值 | 受影响的位置指针 |
---|---|
ios_base::in | 修改 *受控输入序列* 中的当前位置 |
ios_base::out | 修改 *受控输出序列* 中的当前位置 |
pos_type(off_type(-1))
。