std::ios_base::openmode
De cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| typedef /*implementation defined*/ openmode; |
||
| static constexpr openmode app = /*implementation defined*/ static constexpr openmode binary = /*implementation defined*/ |
||
Especifica los indicadores disponibles de archivos abiertos. Es un
BitmaskType, las constantes se definen los siguientes: 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 | buscan al final del flujo antes de cada escritura
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 | abrir en modo binario
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 | abierto para la lectura
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 | abrir para escritura
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 | descartar el contenido de la corriente cuando se abre
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 | buscar al extremo de corriente inmediatamente después de abierto
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. |
[editar] Ejemplo
| This section is incomplete Reason: no example |