unordered_map::clear()函数用于从容器中删除所有元素。当此函数应用于unordered_map时,其大小变为零。
用法:
unordered_map_name.clear()
参数:该函数不接受任何参数
返回类型:此函数不返回任何内容。
Examples:
Input: ump = { {1, 2}, {3, 4}, {5, 6}, {7, 8}}
ump.clear();
Output: ump = { };
// CPP program to illustrate
// Implementation of unordered_map clear() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// Take any two unordered_map
unordered_map<int, int> ump1, ump2;
// Inserting values
ump1[1] = 2;
ump1[3] = 4;
ump1[5] = 6;
ump1[7] = 8;
// Print the size of container
cout << "Unordered_map size before calling clear function:\n";
cout << "ump1 size = " << ump1.size() << endl;
cout << "ump2 size = " << ump2.size() << endl;
// Deleting the elements
ump1.clear();
ump2.clear();
// Print the size of container
cout << "Unordered_map size after calling clear function:\n";
cout << "ump1 size = " << ump1.size() << endl;
cout << "ump2 size = " << ump2.size() << endl;
return 0;
}
输出:
Unordered_map size before calling clear function: ump1 size = 4 ump2 size = 0 Unordered_map size after calling clear function: ump1 size = 0 ump2 size = 0
有什么用途?
当我们希望删除旧元素并从新开始时,尤其是在循环中,使用clear。我们可以通过创建新的映射来实现相同的函数,但是清除相同的映射在性能上更好,因为我们不必创建新的对象。
相关用法
- C++ set::clear用法及代码示例
- C++ map::clear()用法及代码示例
- C++ std::string::clear用法及代码示例
- C++ list::clear()用法及代码示例
- C++ unordered_multimap clear()用法及代码示例
- C++ vector erase()、clear()用法及代码示例
- C++ unoredered_set clear()用法及代码示例
- PHP Imagick clear()用法及代码示例
- C++ multiset clear()用法及代码示例
- C++ unordered_multiset clear()用法及代码示例
注:本文由纯净天空筛选整理自ankit15697大神的英文原创作品 unordered_map clear in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。