数组类通常比C型数组更有效,更轻量且更可靠。 C++ 11中数组类的引入为C样式数组提供了更好的替代方法。
array :: begin()
begin()函数用于返回指向数组容器第一个元素的迭代器。 begin()函数将双向迭代器返回到容器的第一个元素。
句法 :
arrayname.begin()
Parameters :
No parameters are passed.
Returns :
This function returns a bidirectional
iterator pointing to the first element.
例子:
Input : myarray{1, 2, 3, 4, 5};
Output : returns an iterator to the element 1
Input : myarray{8, 7};
Output : returns an iterator to the element 8
错误和异常
1.它没有异常抛出保证。
2.传递参数时显示错误。
CPP
// CPP program to illustrate
// Implementation of begin() function
#include
#include
using namespace std;
int main()
{
// declaration of array container
array myarray{ 1, 2, 3, 4, 5 };
// using begin() to print array
for (auto it = myarray.begin();
it != myarray.end(); ++it)
cout << ' ' << *it;
return 0;
}
CPP
// CPP program to illustrate
// Implementation of end() function
#include
#include
using namespace std;
int main()
{
// declaration of array container
array myarray{ 1, 2, 3, 4, 5 };
// using end() to print array
for (auto it = myarray.begin();
it != myarray.end(); ++it)
cout << ' ' << *it;
auto it = myarray.end();
cout << "\n myarray.end(): " << *it << " [some garbage value]";
return 0;
}
输出:
1 2 3 4 5
array :: end()
end()返回一个迭代器,该迭代器指向数组容器中的past-the-end元素。
句法 :
arrayname.end()
Parameters :
No parameters are passed.
Returns :
This function returns a bidirectional
iterator pointing to the past-the-end element.
例子:
Input : myarray{1, 2, 3, 4, 5};
Output : returns an iterator to the element next to 5 i.e,. some garbage value
Input : myarray{8, 7};
Output : returns an iterator to the element next to 7 i.e,. some garbage value
错误和异常
1.它没有异常抛出保证。
2.传递参数时显示错误。
CPP
// CPP program to illustrate
// Implementation of end() function
#include
#include
using namespace std;
int main()
{
// declaration of array container
array myarray{ 1, 2, 3, 4, 5 };
// using end() to print array
for (auto it = myarray.begin();
it != myarray.end(); ++it)
cout << ' ' << *it;
auto it = myarray.end();
cout << "\n myarray.end(): " << *it << " [some garbage value]";
return 0;
}
输出:
1 2 3 4 5
myarray.end(): 0 [some garbage value]
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。