std::basic_ios::swap
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. |
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.
Inhaltsverzeichnis |
[Bearbeiten]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. |
[Bearbeiten]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.
[Bearbeiten]Ausnahmen
[Bearbeiten]Siehe auch
bewegt sich von anderen std::basic_ios außer rdbuf Original: moves from another std::basic_ios except for rdbuf The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (geschützt Member-Funktion) |