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. |
basic_ios& copyfmt(const basic_ios& other); |
||
Kopiert die Formatierung Flaggen aus Stream
1) 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.
Anrufe Rückrufe von register_callback() Weitergabe erase_event als Parameter eingetragen
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.
Kopiert die Formatierung der Informationen aus
3) 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.
Anrufe Rückrufe von register_callback() Weitergabe copyfmt_event als Parameter eingetragen
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.
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.
[Bearbeiten] 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. |
[Bearbeiten] Rückgabewert
*this
[Bearbeiten] Beispiel
This section is incomplete Reason: no example |