std::ios_base::openmode
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
typedef /*implementation defined*/ openmode; |
||
static constexpr openmode app = /*implementation defined*/ static constexpr openmode binary = /*implementation defined*/ |
||
指定提供文件开放的标志。这是一个
BitmaskType
,下面的常量定义 原文:
Specifies available file open flags. It is a
BitmaskType
, the following constants are defined: 常数
|
Explanation |
app | 寻求每次写操作之前的数据流结束
原文: seek to the end of stream before each write |
binary | 打开二进制模式
|
in | 打开阅读
|
out | 打开写作
|
trunc | 丢弃打开时的流的内容
原文: discard the contents of the stream when opening |
ate | 寻求到的数据流结束后,立即打开
原文: seek to the end of stream immediately after open |
[编辑] 示例
本章尚未完成 原因:暂无示例 |