std::ios_base::openmode
提供: cppreference.com
![]() |
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
typedef /*implementation defined*/ openmode; |
||
static constexpr openmode app = /*implementation defined*/ static constexpr openmode binary = /*implementation defined*/ |
||
使用可能なファイルオープンフラグを指定します。それは
BitmaskType
で、以下の定数が定義されています Original:
Specifies available file open flags. It is a
BitmaskType
, the following constants are defined: The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
定数
Original: Constant The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Explanation |
app | 各書き込みの前にストリームの末尾にシーク
Original: seek to the end of stream before each write The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
binary | バイナリモードで開きます
Original: open in binary mode The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
in | 読み込み用に開きます
Original: open for reading The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
out | 書き込み用に開きます
Original: open for writing The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
trunc | 開封ストリームの内容を破棄します
Original: discard the contents of the stream when opening The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
ate | すぐにオープンした後、ストリームの末尾にシーク
Original: seek to the end of stream immediately after open The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[編集] 例
This section is incomplete Reason: no example |