std::basic_ios::copyfmt
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. |
| basic_ios& copyfmt(const basic_ios& other); |
||
Copia las banderas de formato de
1) other corriente. Esto se realiza en la secuencia siguiente:Original:
Copies the formatting flags from stream
other. This is done in the following sequence: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.
Llamadas callbacks, registradas por el fallecimiento de register_callback() erase_event como parámetro
2) Original:
Calls callbacks, registered by register_callback() passing erase_event as parameter
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.
Copia la información de formato de
3) other a *this. Matriz de datos interna también se copia. rdstate() se deja sin cambios .Original:
Copies the formatting information from
other to *this. Internal data array is also copied. rdstate() is left unchanged.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.
Llamadas callbacks, registradas por el fallecimiento de register_callback() copyfmt_event como parámetro
4) Original:
Calls callbacks, registered by register_callback() passing copyfmt_event as parameter
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.
Copia la máscara excepción de
other a *this .Original:
Copies the exception mask from
other to *this.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.
Establece el error corriente banderas
state además de establecer actualmente banderas. Esencialmente llama clear(rdstate() | state). Puede producir una excepción .Original:
Sets the stream error flags
state in addition to currently set flags. Essentially calls clear(rdstate() | state). May throw an exception.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.
[editar] Parámetros
| other | - | otra corriente de usar como fuente
Original: another stream to use as source The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[editar] Valor de retorno
*this
[editar] Ejemplo
| This section is incomplete Reason: no example |