📅  最后修改于: 2020-10-17 07:08:07             🧑  作者: Mango
C++ Deque at()函数用于访问指定位置pos的元素。
注意:如果pos大于容器的大小,则该函数将引发异常,即“超出范围”。
reference at(size_type pos);
pos:它定义要返回的元素的位置。
其中,size_type是无符号整数类型。
它返回指定元素的引用。
让我们看一个简单的例子
#include
#include
using namespace std;
int main()
{
deque ch={'j','a','v','a','T','p','o','i','n','t'};
for(int i=0;i
输出:
javaTpoint
让我们看一个简单的例子
#include
#include
using namespace std;
int main()
{
deque k={1,2,3,4,5};
cout<
输出:
terminate called after throwing an instance of 'std::out_of_range'
在此示例中,at()函数尝试访问超出容器大小的元素。因此,它将引发异常,即超出范围。