multiset::operator=

使用其他 multiset,将元素替换此 multiset 的元素。

multiset& operator=(
   const multiset& _Right
);
multiset& operator=(
   multiset&& _Right
);

参数

参数

说明

_Right

元素复制或移动的 multiset

备注

operator= 或 _Right 中的元素复制将此 multiset,具体 (lvalue rvalue 或) 使用的类型。 此 multiset 的 operator= 元素,在执行前被丢弃。

示例

// multiset_operator_as.cpp
// compile with: /EHsc
#include <multiset>
#include <iostream>

int main( )
   {
   using namespace std;
   multiset<int> v1, v2, v3;
   multiset<int>::iterator iter;

   v1.insert(10);

   cout << "v1 = " ;
   for (iter = v1.begin(); iter != v1.end(); iter++)
      cout << *iter << " ";
   cout << endl;

   v2 = v1;
   cout << "v2 = ";
   for (iter = v2.begin(); iter != v2.end(); iter++)
      cout << *iter << " ";
   cout << endl;

// move v1 into v2
   v2.clear();
   v2 = move(v1);
   cout << "v2 = ";
   for (iter = v2.begin(); iter != v2.end(); iter++)
      cout << *iter << " ";
   cout << endl;
   }

Output

v1 = 10 
v2 = 10 
v2 = 10 

要求

页眉: <多集>

命名空间: std

请参见

参考

multiset 类

标准模板库