- array :: cbegin()是C++ STL中的内置函数,它返回一个const_iterator指向数组中的第一个元素。不能使用array :: begin()修改数组中的元素。
句法:
array_name.cbegin()
参数:该函数不接受任何参数。
返回值:该函数返回一个const_iterator,它指向数组中的第一个元素。
程序1:
// CPP program to illustrate // the array::cbegin() function #include
using namespace std; int main() { array arr = { 1, 5, 2, 4, 7 }; // Prints the first element cout << "The first element is " << *(arr.cbegin()) << "\n"; // Print all the elements cout << "The array elements are: "; for (auto it = arr.cbegin(); it != arr.cend(); it++) cout << *it << " "; return 0; } 输出:The first element is 1 The array elements are: 1 5 2 4 7
- array :: cend()是C++ STL中的内置函数,它返回一个const_iterator ,该const_iterator指向数组中最后一个元素之后的理论元素。
句法:
array_name.cend()
参数:该函数不接受任何参数。
返回值:该函数返回一个const_iterator ,该const_iterator指向数组中最后一个元素之后的理论元素。
程序1:
// CPP program to illustrate // the array::cend() function #include
using namespace std; int main() { array arr = { 1, 5, 2, 4, 7 }; // prints all the elements cout << "The array elements are: "; for (auto it = arr.cbegin(); it != arr.cend(); it++) cout << *it << " "; return 0; } 输出:The array elements are: 1 5 2 4 7
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。