C++ Set 库 - set() 函数


描述

C++构造函数std::set::set()(移动构造函数)使用移动语义用其他集合的内容构造集合容器,即构造一个获取x元素的集合容器。

如果未提供alloc,则通过移动构造从属于其他的分配器获得分配器。

宣言

以下是 std::set::set() 从 std::set 标头移动构造函数的声明。

C++11

set (set&& x);
set (set&& x, const allocator_type& alloc);

C++14

set (set&& x);
set (set&& x, const allocator_type& alloc);

参数

  • alloc - 将迭代器输入到初始位置。

  • x - 另一个相同类型的集合容器对象。

返回值

构造函数从不返回任何值。

例外情况

如果抛出任何异常,该成员函数将不起作用。

时间复杂度

常量,即 O(1),除非当前设置的分配器与 x 的分配器不同

例子

以下示例显示了 std::set::set() 移动构造函数的用法。

#include <iostream>
#include <set>

using namespace std;

int main(void) {
   // Default constructor
   std::set<char> t_set;
   t_set.insert('x');
   t_set.insert('y');

   std::cout << "Size of set container t_set is : " << t_set.size();

   // Move constructor
   std::set<char> t_set_new(std::move(t_set));
   std::cout << "\nSize of new set container t_set_new is : " << t_set_new.size();
   return 0;
}

让我们编译并运行上面的程序,这将产生以下结果 -

Size of set container t_set is : 2
Size of new set container t_set_new is : 2 
设置.htm