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


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


C++ Deque begin() 函數返回一個指向 deque 容器第一個元素的迭代器。如果容器為空,則返回的迭代器將等於 end()。

用法

iterator begin();

參數

它不包含任何參數。

返回值

它返回一個指向雙端隊列第一個元素的迭代器。

例子1

讓我們看一個簡單的例子

#include <iostream>
#include<deque>
using namespace std;
int main()
{
  deque<int> n={1,2,3};
  deque<int>::iterator itr;
  itr=n.begin();
  cout<<"first element of the deque:"<<*itr;
  return 0;
}

輸出:

first element of the deque:1

在本例中,begin() 函數返回第一個元素的迭代器。

例子2

讓我們看一個簡單的例子

#include <iostream>
#include<deque>
using namespace std;
int main()
{
  deque<char> ch={'C','+','+'};
  deque<char>::iterator itr;
  itr=ch.begin()+2;
  cout<<*itr;
  return 0;
}

在此示例中,begin() 函數遞增 2。因此,begin() 函數返回第三個元素的迭代器。





相關用法


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