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); |
||
Copie les codes de formatage du flux
1) other
. Ceci est fait dans l'ordre suivant: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.
Rappels, les appels enregistrés par le passage register_callback() erase_event en tant que paramètre
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.
Copie les informations de mise en forme de
3) other
à *this. Interne tableau de données est également copié. rdstate()
reste inchangé .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.
Rappels, les appels enregistrés par le passage register_callback() copyfmt_event en tant que paramètre
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.
Copie le masque d'exception à partir de
other
*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.
Définit l'erreur de flux drapeaux
state
en plus de définir des indicateurs actuellement. Appelle essentiellement clear(rdstate() | state). Peut lever une exception .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.
[modifier] Paramètres
other | - | un autre flux pour l'utiliser comme source
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. |
[modifier] Retourne la valeur
*this
[modifier] Exemple
This section is incomplete Reason: no example |