‘=’是C++ STL中的运算符,它将unordered_multiset复制(或移动)到另一个unordered_multiset和unordered_multiset :: 运算符=是相应的运算符函数。此函数有三个版本:
- 第一个版本将unordered_multiset的引用作为参数并将其复制到unordered_multiset。
句法:
ums1.operator=(unordered_multiset &ums2)
参数:第一个版本将unordered_multiset的引用作为参数。
- 第二个版本执行移动分配,即它将unordered_multiset的内容移动到另一个unordered_multiset。
句法:
ums1.operator=(unordered_multiset &&ums2)
参数:第二个版本将unordered_multiset的r值引用作为参数
- 第三个版本将初始化列表的内容分配给unordered_multiset。
句法:
ums1.operator=(initializer list)
参数:第三个版本以初始化列表作为参数。
返回值:它们都返回此指针的值(* this)。
以下程序说明了unordered_multiset :: 运算符=。
// C++ code to illustrate the method
// unordered_multiset::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_multiset sample1, sample2, sample3;
// List initialization
sample1 = { 1, 2, 2, 3, 3, 4, 4, 4, 3, 4 };
sample2 = { 1, 2, 3, 1, 4 };
// Merge both unordered_multisets and
// move the result to sample1
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;
}
输出:
1 1 1 2 2 2 3 3 3 3 4 4 4 4 4
4 3 2 1 1
1 1 1 2 2 2 3 3 3 3 4 4 4 4 4
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。