std::basic_ios::copyfmt
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. |
basic_ios& copyfmt(const basic_ios& other); |
||
Copia i flag di formattazione da
1) other
flusso. Questo viene fatto nella sequenza seguente: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.
Callback, chiamate registrate dal passaggio register_callback() erase_event come parametro
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 le informazioni di formattazione da
3) other
a *this. Interno di matrice dati vengono copiati. rdstate()
rimane invariato.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.
Callback, chiamate registrate dal passaggio register_callback() copyfmt_event come parametro
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 maschera di eccezione da
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.
Imposta l'errore flusso bandiere
state
oltre a impostare attualmente bandiere. Essenzialmente chiama clear(rdstate() | state). Può generare un'eccezione.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.
[modifica] Parametri
other | - | altro flusso da usare come sorgente
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. |
[modifica] Valore di ritorno
*this
[modifica] Esempio
This section is incomplete Reason: no example |