std::basic_iostream<CharT,Traits>::operator=
来自cppreference.com
basic_iostream& operator=( const basic_iostream& other ) = delete;
|
(1) | |
protected:
basic_iostream& operator=( basic_iostream&& other );
|
(2) | (C++11 起) |
赋值另一流对象。
swap(rhs)。此移动赋值运算符受保护:派生流类 std::basic_stringstream 和 std::basic_fstream 的移动赋值运算符会调用它,这些运算符知晓如何正确地移动赋值关联的流缓冲。| other | - | 要赋值其状态的另一流 |
*this
| 构造对象 (公开成员函数) [编辑] |