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