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


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


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


相關用法


注:本文由純淨天空篩選整理自barykrg大神的英文原創作品 list pop_front() function in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。