数组类通常比C型数组更有效,更轻量且更可靠。 C++ 11中数组类的引入为C样式数组提供了更好的替代方法。
array ::运算符[]
该运算符用于引用在运算符内部给定位置处存在的元素。它类似于at()函数,唯一的区别是,当位置不在数组大小的范围内时,at()函数将引发超出范围的异常,而此运算符会导致未定义的行为。
句法 :
arrayname[position]
Parameters :
Position of the element to be fetched.
Returns :
Direct reference to the element at the given position.
例子:
Input : myarray = {1, 2, 3, 4, 5}
myarray[2]
Output : 3
Input : myarray = {1, 2, 3, 4, 5}
myarray[4]
Output : 5
错误和异常
1.如果该位置不存在于数组中,则显示未定义的行为。
2.否则,没有异常抛出保证。
// CPP program to illustrate
// Implementation of [] operator
#include
#include
using namespace std;
int main()
{
array myarray{ 1, 2, 3, 4, 5 };
cout << myarray[4];
return 0;
}
输出:
5
应用
给定一个整数数组,打印出现在偶数位置的所有整数。
Input :1, 2, 3, 4, 5
Output :1 3 5
Explanation - 1, 3 and 5 are at position 0,2,4 which are even
算法
1.循环运行直至达到阵列的大小。
2.检查该位置是否可被2整除,如果是,则在该位置打印元素。
// CPP program to illustrate
// Application of [] operator
#include
#include
using namespace std;
int main()
{
array myarray{ 1, 2, 3, 4, 5 };
for(int i=0; i
输出:
1 3 5
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。