std::basic_ios::swap
Aus cppreference.com
<metanoindex/>
<tbody> </tbody> protected: void swap( basic_ios& other ); |
(seit C++11) | |
Tauscht die Zustände
*this und other, mit Ausnahme der zugehörigen rdbuf Objekte. rdbuf() und other.rdbuf() gibt die gleichen Werte wie vor dem Aufruf .Original:
Exchanges the states of
*this and other, except for the associated rdbuf objects. rdbuf() and other.rdbuf() returns the same values as before the call.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.
Diese Swap-Funktion geschützt ist: Es wird von den Swap-Member-Funktionen der abgeleiteten Stream-Klassen wie std::basic_ofstream oder std::basic_istringstream, die, wie man richtig tauschen die zugehörige streambuffers wissen, heißt .
Original:
This swap function is protected: it is called by the swap member functions of the derived stream classes such as std::basic_ofstream or std::basic_istringstream, which know how to correctly swap the associated streambuffers.
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 | - | Die
basic_ios Objekt, um den Staat mit auszutauschenOriginal: the basic_ios object to exchange the state withThe text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Rückgabewert
(None)
Original:
(none)
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.
