std::basic_streambuf::pubseekoff, std::basic_streambuf::seekoff
来自cppreference.com
< cpp | io | basic streambuf
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
pos_type pubseekoff( off_type off, ios_base::seekdir dir, ios_base::openmode which = ios_base::in | ios_base::out ); |
(1) | |
protected: virtual pos_type seekoff( off_type off, ios_base::seekdir dir, |
(2) | |
设置的输入和/或输出序列相对于其他一些位置的位置指示器.
1) 原文:
Sets the position indicator of the input and/or output sequence relative to some other position.
调用
2) seekoff(off, dir, which)
最派生类原文:
Calls
seekoff(off, dir, which)
of the most derived class这个函数的基类版本没有任何效果。派生类可以重载这个函数来进行相对定位的位置指示器.
原文:
The base class version of this function has no effect. The derived classes may override this function to allow relative positioning of the position indicator.
目录 |
[编辑] 参数
off | - | 相对位置设置位置指示器.
原文: relative position to set the position indicator to. | ||||||||||||||||
dir | - | 定义应用的相对偏移量的基础地位。它可以是以下常量之一:
| ||||||||||||||||
which | - |
[编辑] 返回值
1)seekoff(off, dir, which)
的返回值原文:
The return value of
seekoff(off, dir, which)
将得到的绝对位置的位置指示器所定义的。基类版本返回pos_type(off_type(1-)).
原文:
The resulting absolute position as defined by the position indicator. The base class version returns pos_type(off_type(1-)).
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
调用seekpos() (公共成员函数) |