‘=’是C++ STL中的一个运算符,它将一个unordered_set复制(或移动)到另一个unordered_set,并且unordered_set :: 运算符=是相应的运算符函数。此函数有三个版本。
- 第一个版本将unordered_set的引用作为参数并将其复制到unordered_set。
- 第二个版本执行移动分配,即,它将unordered_set的内容移动到另一个unordered_set。
- 第三个版本将初始化列表的内容分配给unordered_set。
句法
uset.operator= ( unordered_set& us )
uset.operator= ( unordered_set&& us )
uset.operator= ( initializer list )
参数:
- 第一个版本将unordered_set的引用作为参数。
- 第二个版本将unordered_set的r值引用作为参数。
- 第三个版本将一个初始化程序列表作为参数。
返回值:它们都返回此指针的值(* this)。
下面的程序说明了C++中的unordered_set :: 运算符= 。
程序:
// C++ code to illustrate the method
// unordered_set::operator=()
#include
#include
using namespace std;
// merge function
template
T merge(T a, T b)
{
T t(a);
t.insert(b.begin(), b.end());
return t;
}
int main()
{
unordered_set sample1, sample2, sample3;
// List initialization
sample1 = { 7, 8, 9 };
sample2 = { 9, 10, 11, 12 };
// Merge both lists
sample3 = merge(sample1, sample2);
// copy assignment
sample1 = sample3;
// Print the unordered_set list
for (auto it = sample1.begin(); it != sample1.end(); ++it)
cout << *it << " ";
cout << endl;
for (auto it = sample2.begin(); it != sample2.end(); ++it)
cout << *it << " ";
cout << endl;
for (auto it = sample3.begin(); it != sample3.end(); ++it)
cout << *it << " ";
cout << endl;
}
输出:
10 11 12 7 8 9
12 11 10 9
10 11 12 7 8 9
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。