std::basic_streambuf<CharT,Traits>::swap

来自cppreference.com
< cpp‎ | io‎ | basic streambuf
 
 
 
 
void swap( basic_streambuf& other );
(C++11 起)

交换流缓冲与 other 的内容。

参数

other - 要交换内容的流缓冲

返回值

(无)

异常

可能抛出实现定义的异常。

示例