set::operator= (STL/CLR)
被制御シーケンスを置き換えます。
set<Key>% operator=(set<Key>% right);
パラメーター
- [right]
コピーするコンテナー。
解説
メンバー演算子は、オブジェクトに right を、を返します *thisをコピーします。これを使用して、被制御シーケンスを right の被制御シーケンスのコピーに置き換えることができます。
使用例
// cliext_set_operator_as.cpp
// compile with: /clr
#include <cliext/set>
typedef cliext::set<wchar_t> Myset;
int main()
{
Myset c1;
c1.insert(L'a');
c1.insert(L'b');
c1.insert(L'c');
// display contents " a b c"
for each (Myset::value_type elem in c1)
System::Console::Write(" {0}", elem);
System::Console::WriteLine();
// assign to a new container
Myset c2;
c2 = c1;
// display contents " a b c"
for each (Myset::value_type elem in c2)
System::Console::Write(" {0}", elem);
System::Console::WriteLine();
return (0);
}
必要条件
ヘッダー: <cliext と設定>
名前空間: の cliext