unordered_multiset :: clear()是C++ STL中的内置函数,用于清除unordered_multiset容器的内容。调用该函数后,容器的最终大小为0。
句法:
unordered_multiset_name.clear()
参数:该函数不接受任何参数。
返回值:不返回任何内容。
下面的程序说明了上述函数:
程序1:
// C++ program to illustrate the
// unordered_multiset::clear() function
#include
using namespace std;
int main()
{
// declaration
unordered_multiset sample;
// inserts element
sample.insert(11);
sample.insert(11);
sample.insert(11);
sample.insert(12);
sample.insert(13);
sample.insert(13);
sample.insert(14);
cout << "Elements: ";
for (auto it = sample.begin(); it != sample.end(); it++) {
cout << *it << " ";
}
sample.clear();
cout << "\nSize of container after function call: "
<< sample.size();
return 0;
}
输出:
Elements: 14 11 11 11 12 13 13
Size of container after function call: 0
程式2:
// C++ program to illustrate the
// unordered_multiset::clear() function
#include
using namespace std;
int main()
{
// declaration
unordered_multiset sample;
// inserts element
sample.insert(1);
sample.insert(1);
sample.insert(1);
sample.insert(2);
sample.insert(3);
sample.insert(4);
sample.insert(3);
cout << "Elements: ";
for (auto it = sample.begin(); it != sample.end(); it++) {
cout << *it << " ";
}
sample.clear();
cout << "\nSize of container after function call: "
<< sample.size();
return 0;
}
输出:
Elements: 1 1 1 2 3 3 4
Size of container after function call: 0
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。