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


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


C++ Deque at() 函數用於訪問指定位置pos的元素。

注意:如果 pos 大於容器的大小,則該函數會拋出異常,即“超出範圍”。

用法

reference at(size_type pos);

參數

pos:它定義了要返回的元素的位置。

其中, size_type 是無符號整數類型。

返回值

它返回指定元素的引用。

例子1

讓我們看一個簡單的例子

#include <iostream>
#include<deque>
using namespace std;
int main()
{
   deque<char> ch={'j','a','v','a','T','p','o','i','n','t'};
   for(int i=0;i<ch.size();i++)
   cout<<ch.at(i);
   return 0;
}

輸出:

javaTpoint

例子2

讓我們看一個簡單的例子

#include <iostream>
#include<deque>
using namespace std;
int main()
{
   deque<int> k={1,2,3,4,5};
   cout<<k.at(5);
   return 0;
}

輸出:

terminate called after throwing an instance of 'std::out_of_range'

在本例中,at() 函數嘗試訪問超出容器大小的元素。因此,它會拋出異常,即超出範圍。





相關用法


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