array :: at()是C++ STL中的内置函数,它返回对给定数组中位置i处存在的元素的引用。
句法:
array_name.at(i)
参数:该函数接受一个指定位置的强制参数i 。
返回值:如果i是有效索引,则该函数返回存在于给定数组中索引i处的元素,否则抛出out_of_range异常。
时间复杂度: O(1)
下面的程序演示了array :: at()函数:
程序1:
// CPP program to illustrate
// the array::at() function
#include
using namespace std;
int main()
{
// array initialisation
array arr = { 1, 5, 2, 4, 7 };
// prints the element at ith index
// index starts from zero
cout << "The element at index 2 is " << arr.at(2) << endl;
return 0;
}
输出:
The element at index 2 is 2
程序2:说明函数在较小尺寸的数组上实现时引起错误。
// CPP program to illustrate
// the array::at() function
#include
using namespace std;
int main()
{
// array initialisation
array arr = { 1, 5, 2, 4, 7 };
// it is an exception
cout << "The element at index 2 is " << arr.at(7) << endl;
return 0;
}
输出:
Abort signal from abort(3) (SIGABRT)
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。