std::basic_osyncstream<CharT,Traits,Allocator>::operator=
来自 cppreference.com
< cpp | io | basic osyncstream
basic_osyncstream& operator=( std::basic_osyncstream&& other ); |
(自 C++20 起) | |
将同步输出流移动赋值
将包装的 std::basic_syncbuf 从 other 的对应成员移动赋值(在此移动赋值后,other.get_wrapped() 返回空指针,并且 other 的析构不会产生任何输出;任何挂起的缓冲输出都将被发出)以及 移动赋值 基础 std::basic_ostream(这会交换除 rdbuf
之外的所有流状态变量,在 *this 和 other 之间)
内容 |
[编辑] 参数
other | - | 另一个要从中移动的同步输出流 |
[编辑] 返回值
*this
[编辑] 示例
运行此代码
#include <iomanip> #include <iostream> #include <sstream> #include <syncstream> #include <utility> int main() { std::osyncstream out(std::cout); out << "test\n"; std::ostringstream str_out; std::osyncstream{str_out} = std::move(out); // Note that out is emitted here std::cout << "str_out = " << std::quoted(str_out.view()) << '\n'; }
输出
test str_out = ""
[编辑] 缺陷报告
以下行为改变缺陷报告被追溯应用于之前发布的 C++ 标准。
DR | 应用于 | 发布的行为 | 正确行为 |
---|---|---|---|
LWG 3867 | C++20 | 移动赋值运算符为 noexcept,但 std::basic_syncbuf 的移动赋值运算符不是 |
删除 noexcept |
[编辑] 另请参阅
构造 basic_osyncstream 对象(公有成员函数) | |
销毁 basic_osyncstream 并发出其内部缓冲区(公有成员函数) | |
在底层 basic_syncbuf 上调用 emit() 以将其内部数据传输到最终目的地(公有成员函数) |