C++ Set 库 - 运算符 = 函数


描述

它将新内容分配给容器,替换其当前内容。

宣言

以下是 std::set::operator= 在各种 C++ 版本中的工作方式。

C++98

set& operator= (const set& x);

C++11

set& operator= (const set& x);
set& operator= (set&& x);	
set& operator= (initializer_list<value_type> il)

返回值

它返回*this。

例外情况

如果抛出异常,则容器处于有效状态。

时间复杂度

与容器的大小成线性关系。

例子

以下示例显示了 std::set::operator= 的用法。

#include <iostream>
#include <set>

int main () {
   int myints[] = { 10,20,30,40,50 };
   std::set<int> first (myints,myints+10);   
   std::set<int> second;                   

   second = first;                         
   first = std::set<int>();                

   std::cout << "Size of first: " << int (first.size()) << '\n';
   std::cout << "Size of second: " << int (second.size()) << '\n';
   return 0;
}

上面的程序可以正确编译并执行。

Size of first: 0
Size of second: 8
设置.htm