描述
C++ 构造函数std::set::set()(Move Constructor) 使用移动语义用其他集合的内容构造集合容器,即构造一个获取 x 元素的集合容器。
如果没有提供alloc,则分配器由move-construction从属于other的分配器中获取。
声明
以下是 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
相关用法
- C++ Set set()用法及代码示例
- C++ Set cbegin()、cend()用法及代码示例
- C++ Set upper_bound()用法及代码示例
- C++ Set max_size()用法及代码示例
- C++ Set crbegin()、crend()用法及代码示例
- C++ Set equal_range()用法及代码示例
- C++ Set emplace_hint()用法及代码示例
- C++ Set count()用法及代码示例
- C++ Set insert()用法及代码示例
- C++ Set get_allocator()用法及代码示例
- C++ String back()用法及代码示例
- C++ String append()用法及代码示例
- C++ Stack push()用法及代码示例
- C++ String Assign()用法及代码示例
- C++ Stack empty()用法及代码示例
- C++ SHRT_MIN用法及代码示例
- C++ Stack size()用法及代码示例
- C++ String size()用法及代码示例
- C++ String resize()用法及代码示例
- C++ String swap()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Set Library - set() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。