std::basic_ios::copyfmt
De cppreference.com
<metanoindex/>
<tbody> </tbody> basic_ios& copyfmt(const basic_ios& other); |
||
Copia as bandeiras de formatação de
other fluxo. Isto é feito na seguinte sequência: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.
1)
Chamadas callbacks, registradas pela passagem register_callback() erase_event como parâmetro
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.
2)
Copia as informações para a formatação de
other *this. Matriz de dados interna também é copiado. rdstate() é deixado inalterado.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.
3)
Chamadas callbacks, registradas pela passagem register_callback() copyfmt_event como parâmetro
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.
4)
Copia a máscara de exceção de
other para *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.
Define o fluxo de erro
state bandeiras, além de atualmente definido bandeiras. Essencialmente chama clear(rdstate() | state). Pode lançar uma exceção.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.
Parâmetros
| other | - | outro fluxo para utilizar como fonte
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. |
Valor de retorno
*this
