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


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


C++ Deque pop_front() 函數從雙端隊列中移除第一個元素,容器的大小減一。

用法

void pop_front();

參數

它不包含任何參數。

返回值

它不返回任何值。

例子1

讓我們看一個簡單的例子

#include <iostream>
#include<deque>
using namespace std;
int main()
{
    deque<int> d={10,20,30,40,50};
    deque<int>::iterator itr;
    d.pop_front();
    for(itr=d.begin();itr!=d.end();++itr)
    cout<<*itr<<" ";
    return 0;
  }

輸出:

20 30 40 50 

在這個例子中, pop_front() 函數從雙端隊列中刪除第一個元素,即 10。

例子2

讓我們看一個簡單的例子

#include <iostream>
#include<deque>
using namespace std;
int main()
{
    deque<string> language={"C","C++","java",".net"};
    deque<string>::iterator itr;
    language.pop_front();
    for(itr=language.begin();itr!=language.end();++itr)
    cout<<*itr<<" ";
    return 0;
 }

輸出:

C++ java .net 

在這個例子中, pop_front() 函數從雙端隊列中刪除第一個字符串,即 "C"。





相關用法


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