std::basic_ospanstream<CharT,Traits>::swap
来自 cppreference.com
< cpp | io | basic ospanstream
void swap( basic_ospanstream& other ); |
(自 C++23 起) | |
将流的状态与 other
的状态交换。
这是通过调用 std::basic_ostream<CharT, Traits>::swap(other) 并交换包装的 std::basic_spanbuf 对象(可通过 *rdbuf() 访问)来完成的。
内容 |
[编辑] 参数
other | - | 要交换状态的流 |
[编辑] 返回值
(无)
[编辑] 异常
可能抛出实现定义的异常。
[编辑] 示例
此部分不完整 原因:没有示例 |
[编辑] 参见
(C++23) |
交换两个 basic_spanbuf 对象( std::basic_spanbuf<CharT,Traits> 的公共成员函数) |