名稱空間
變體
操作

std::basic_ostringstream::operator=

來自 cppreference.com
basic_ostringstream& operator=( basic_ostringstream&& other );
(C++11 起)

移動賦值字串流 other*this,有效地移動賦值 std::basic_ostream 基類和關聯的 std::basic_stringbuf

請注意,基類的移動賦值會交換 *thisother 之間所有的流狀態變數(除了 rdbuf)。

目錄

[編輯] 引數

其他 - 要從中移動的字串流

[編輯] 返回值

*this

[編輯] 示例

[編輯] 參閱

(C++11)
交換兩個字串流
(public 成員函式) [編輯]
(C++11)
賦值一個 basic_stringbuf 物件
(std::basic_stringbuf<CharT,Traits,Allocator> 的 public 成員函式) [編輯]
(C++11)
從另一個basic_ostream移動賦值
(protected 成員函式) [編輯]