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


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


list::pop_back()是C++ STL中的內置函數,用於從列表容器的背麵刪除元素。即,此函數刪除列表容器的最後一個元素。因此,此函數在從列表末尾刪除元素時將容器的大小減小1。

用法

list_name.pop_back();

參數:該函數不接受任何參數。


返回值:此函數不返回任何內容。

以下示例程序旨在說明C++ STL中的list::pop_back()函數:

// CPP program to illustrate the 
// list::pop_back() 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 end of List 
    // using pop_back 
    demoList.pop_back(); 
  
    // List after removing element from end 
    cout << "\n\nList after removing an element from end: "; 
    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 end: 10 20 30


相關用法


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