命名空间
变体
操作

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) 移动赋值运算符交换基类的所有数据成员,除了 rdbuf(),与 rhs,如同调用 swap(*rhs)。此移动赋值运算符受保护:它只由派生可移动输出流类 std::basic_ofstreamstd::basic_ostringstream 的移动赋值运算符调用,它们知道如何正确地移动赋值关联的流缓冲区。

[编辑] 参数

rhs - 要从中赋值到 *thisbasic_ostream 对象

[编辑] 示例

#include <iostream>
#include <sstream>
#include <utility>
 
int main()
{
    std::ostringstream s;
//  std::cout = s;            // ERROR: copy assignment operator is deleted
//  std::cout = std::move(s); // ERROR: move assignment operator is protected
    s = std::move(std::ostringstream() << 42); // OK, moved through derived
    std::cout << s.str() << '\n';
}

输出

42

[编辑] 缺陷报告

以下行为变更缺陷报告被追溯应用于以前发布的 C++ 标准。

DR 应用于 已发布的行为 正确行为
LWG 2067 C++11 1. 重载 (1) 的参数类型为 basic_ostream&
2. 重载 (2) 的参数类型为 const basic_ostream&&
1. 添加了 const
2. 删除了 const