std::basic_streambuf::pubseekpos, std::basic_streambuf::seekpos
来自cppreference.com
< cpp | io | basic streambuf
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
pos_type pubseekpos( pos_type pos, ios_base::openmode which = ios_base::in | ios_base::out ); |
(1) | |
protected: virtual pos_type seekpos( pos_type pos, |
(2) | |
设置的输入和/或输出序列到一个绝对位置的位置指示器.
1) 原文:
Sets the position indicator of the input and/or output sequence to an absolute position.
调用
2) seekpos(pos, which)
最派生类原文:
Calls
seekpos(pos, 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 absolute positioning of the position indicator.
目录 |
[编辑] 参数
pos | - | 绝对位置设置位置指示器.
原文: absolute position to set the position indicator to. |
which | - |
[编辑] 返回值
1)seekpos(pos, which)
的返回值原文:
The return value of
seekpos(pos, 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-)).
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
调用seekoff() (公共成员函数) |