list::pop_front()是C++ STL中的內置函數,用於從列表容器的開頭刪除元素。因此,此函數將容器的大小減小1,因為它從列表的開頭刪除了元素。
用法:
list_name.pop_front();
參數:該函數不接受任何參數。
返回值:此函數不返回任何內容。
以下示例程序旨在說明C++ STL中的list::pop_front()函數:
// CPP program to illustrate the
// list::pop_front() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// Creating a list
list<int> demoList;
// Adding elements to the list
// using push_back()
demoList.push_back(10);
demoList.push_back(20);
demoList.push_back(30);
demoList.push_back(40);
// Initial List:
cout << "Initial List: ";
for (auto itr = demoList.begin(); itr != demoList.end(); itr++)
cout << *itr << " ";
// removing an element from the front of List
// using pop_front
demoList.pop_front();
// List after removing element from front
cout << "\n\nList after removing an element from front: ";
for (auto itr = demoList.begin(); itr != demoList.end(); itr++)
cout << *itr << " ";
return 0;
}
輸出:
Initial List: 10 20 30 40 List after removing an element from front: 20 30 40
相關用法
- C++ list end()用法及代碼示例
- C++ list max_size()用法及代碼示例
- C++ list remove()用法及代碼示例
- C++ list splice()用法及代碼示例
- C++ list emplace()用法及代碼示例
- C++ list assign()用法及代碼示例
- C++ list push_back()用法及代碼示例
- C++ list back()用法及代碼示例
- C++ list front()用法及代碼示例
- C++ list push_front()用法及代碼示例
- C++ list pop_back()用法及代碼示例
- C++ list empty()用法及代碼示例
- C++ list reverse用法及代碼示例
- C++ list merge()用法及代碼示例
- C++ list size()用法及代碼示例
注:本文由純淨天空篩選整理自barykrg大神的英文原創作品 list pop_front() function in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。