當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ list::clear()用法及代碼示例



清單是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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。