std::basic_ostream<CharT,Traits>::operator=
来自cppreference.com
< cpp | io | basic ostream
protected: basic_ostream& operator=( const basic_ostream& rhs ) = delete; |
(1) | |
protected: basic_ostream& operator=( basic_ostream&& rhs ); |
(2) | (C++11 起) |
1) 复制赋值运算符被保护,且被删除。输出流不可复制赋值 (CopyAssignable) 。
2) 移动赋值运算符如同通过调用 swap(*rhs),与 rhs 交换基类的除了 rdbuf() 以外所有数据成员。此移动赋值运算符受保护:它只为派生的可移动输出流类 std::basic_ofstream 和 std::basic_ostringstream 的移动赋值运算符所调用,它们知道如何正确移动赋值关联的流缓冲。
参数
rhs | - | 要赋值给 *this 的 basic_ostream 对象
|
示例
运行此代码
#include <iostream> #include <sstream> #include <utility> int main() { std::ostringstream s; // std::cout = s; // 错误:复制赋值运算符被删除 // std::cout = std::move(s); // 错误:移动赋值运算符受保护 s = std::move(std::ostringstream() << 42); // OK :通过派生类移动 std::cout << s.str() << '\n'; }
输出:
42
缺陷报告
下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。
缺陷报告 | 应用于 | 出版时的行为 | 正确行为 |
---|---|---|---|
LWG 2067 | C++11 | 1. 重载 (1) 的参数类型是 basic_ostream& 2. 重载 (2) 的参数类型是 const basic_ostream&& |
1. 添加 const 2. 移除 const |