std::basic_ostringstream::operator=
提供: cppreference.com
basic_ostringstream& operator=( basic_ostringstream&& other ); |
(C++11以上) | |
文字列ストリーム other
を *this
にムーブ代入します。 実質的に std::basic_ostream 基底クラスと紐付けられている std::basic_stringbuf の両方をムーブ代入します。
基底クラスのムーブ代入は (rdbuf を除いた) すべての状態変数を *this と other
の間でスワップすることに注意してください。
目次 |
[編集] 引数
other | - | ムーブする文字列ストリーム |