std::ios_base::seekdir
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
typedef /*implementation defined*/ seekdir; |
||
static constexpr seekdir beg = /*implementation defined*/ static constexpr seekdir end = /*implementation defined*/ |
||
指定文件寻求方向型。以下常量的定义
原文:
Specifies file seeking direction type. The following constants are defined:
常数
|
Explanation |
beg | 流的开头
|
end | 流的结束
|
cur | 流中的当前位置的位置指示器
原文: the current position of stream position indicator |
[编辑] 示例
本章尚未完成 原因:暂无示例 |