C++ Deque at()函数
C++ Deque at()函数用于访问指定位置pos上的元素。
注意:如果pos大于容器的大小,则该函数引发异常,即“越界”。
语法
reference at(size_type pos);
参数
pos :它定义了要返回的元素的位置。
where ,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()函数试图访问容器范围之外的元素。因此,它抛出一个异常,即超出范围。