void swap( basic_stringbuf& rhs ); | (since C++11) (until C++20) | |
void swap( basic_stringbuf& rhs ) noexcept(/* see below */); | (since C++20) |
Swaps the state and the contents of *this
and rhs
.
The behavior is undefined if | (since C++11) |
rhs | - | another basic_stringbuf |
(none).
May throw implementation-defined exceptions. |
(since C++11) (until C++20) |
noexcept specification: noexcept(std::allocator_traits<Allocator>::propagate_on_container_swap::value | (since C++20) |
This function is called automatically when swapping std::stringstream
objects, it is rarely necessary to call it directly.
#include <sstream> #include <string> #include <iostream> #include <iomanip> int main() { std::istringstream one("one"); std::ostringstream two("two"); std::cout << "Before swap, one = " << std::quoted( one.str() ) << " two = " << quoted( two.str() ) << '\n'; one.rdbuf()->swap(*two.rdbuf()); std::cout << "After swap, one = " << quoted( one.str() ) << " two = " << quoted( two.str() ) << '\n'; }
Output:
Before swap, one = "one" two = "two" After swap, one = "two" two = "one"
constructs a basic_stringbuf object (public member function) |
|
(C++11) | swaps two string streams (public member function of std::basic_stringstream<CharT,Traits,Allocator> ) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/io/basic_stringbuf/swap