std::basic_stringstream::swap
De cppreference.com
<metanoindex/>
<tbody> </tbody> void swap( basic_stringstream& other ); |
(desde C++11) | |
Bolsas de valores do estado do fluxo com os de
other. Original:
Exchanges the state of the stream with those of
other. 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.
Isso é feito chamando
basic_istream<CharT, Traits>::swap(other) e rdbuf->swap(other->rdbuf). Original:
This is done by calling
basic_istream<CharT, Traits>::swap(other) and rdbuf->swap(other->rdbuf). 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.
Parâmetros
| other | - | transmitir para trocar o estado com
Original: stream to exchange the state with The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Valor de retorno
(Nenhum)
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.
Exemplo
| Esta seção está incompleta Motivo: sem exemplo |
