命名空间
变体
操作

std::basic_spanstream<CharT,Traits>::operator=

来自 cppreference.com
< cpp‎ | io‎ | basic spanstream
basic_spanstream& operator=( basic_spanstream&& other );
(1) (自 C++23 起)
basic_spanstream& operator=( const basic_spanstream& ) = delete;
(2) (自 C++23 起)
1)other 移动赋值给 *this,实际上是将 std::basic_iostream 基类子对象和包装的 std::basic_spanbuf 都移动赋值。
2) 复制赋值运算符已删除。basic_spanstream 不可复制赋值。

请注意,基类的移动赋值运算符会在 *thisother 之间交换所有流状态变量(除了 rdbuf())。

在移动赋值后,other 中包装的 std::basic_spanbuf 是否仍持有底层缓冲区是实现定义的行为。

内容

[编辑] 参数

other - 要从中移动的另一个流

[编辑] 返回值

*this

[编辑] 异常

可能会抛出实现定义的异常。

[编辑] 示例

[编辑] 另请参见

(C++23)
basic_spanbuf 对象赋值
(std::basic_spanbuf<CharT,Traits> 的公共成员函数) [编辑]
(C++11)
将另一个 basic_iostream 移动赋值
(受保护的成员函数) [编辑]