std::basic_ios::copyfmt
Aus 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. |
<metanoindex/>
<tbody> </tbody> basic_ios& copyfmt(const basic_ios& other); |
||
Kopiert die Formatierung Flaggen aus Stream
other. Dies wird in der folgenden Sequenz durchgeführt: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)
Anrufe Rückrufe von register_callback() Weitergabe erase_event als Parameter eingetragen
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)
Kopiert die Formatierung der Informationen aus
other um *this. Interne Daten-Array kopiert. rdstate() unverändert gelassen .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)
Anrufe Rückrufe von register_callback() Weitergabe copyfmt_event als Parameter eingetragen
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)
Kopiert die Ausnahme Maske aus
other um *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.
Stellt den Strom Fehlerflags
state neben aktuell eingestellten Flags. Im Wesentlichen fordert clear(rdstate() | state). Kann eine Ausnahme werfen .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.
Parameter
| other | - | ein anderer Strom als Quelle zu verwenden
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. |
Rückgabewert
*this
Beispiel
| This section is incomplete Reason: no example |