清单是C++中用于以非连续方式存储数据的容器,通常,数组和向量本质上是连续的,因此,与列表中的插入和删除选项相比,插入和删除操作的成本更高。
list::clear()
clear()函数用于删除列表容器的所有元素,从而使其大小为0。
用法:
listname.clear() 参数: No parameters are passed. Result: All the elements of the list are removed ( or destroyed )
例子:
Input :list{1, 2, 3, 4, 5}; list.clear(); Output:list{} Input :list{}; list.clear(); Output:list{}
错误和异常
1.它没有异常抛出保证。
2.传递参数时显示错误。
// CPP program to illustrate
// Implementation of clear() function
#include <iostream>
#include <list>
using namespace std;
int main()
{
list<int> mylist{ 1, 2, 3, 4, 5 };
mylist.clear();
// List becomes empty
// Printing the list
for (auto it = mylist.begin(); it != mylist.end(); ++it)
cout << ' ' << *it;
return 0;
}
输出:
No Output
相关文章:删除C++ STL列表中的元素
相关用法
注:本文由纯净天空筛选整理自AyushSaxena大神的英文原创作品 list::clear() in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。