std::ios_base::openmode
Da cppreference.com.
![]() |
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
typedef /*implementation defined*/ openmode; |
||
static constexpr openmode app = /*implementation defined*/ static constexpr openmode binary = /*implementation defined*/ |
||
Specifica i flag di file disponibili aperti. È un
BitmaskType
, le costanti sono: 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.
Constant
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 | cercano alla fine del flusso prima di ogni scrittura
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 | aperto in modalità binaria
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 | aprire per la lettura
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 | aperto per la scrittura
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 | scartare il contenuto del flusso durante l'apertura
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 | cercano di fine flusso subito dopo aperto
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. |
[modifica] Esempio
This section is incomplete Reason: no example |