forward_list :: cbegin()是C++ STL中的一个函数,它返回一个常量迭代器,该迭代器指向forward_list的第一个元素。
句法:
forward_list_name.cbegin()
参数:该函数不接受任何参数。
返回值:该函数返回一个指向const内容的迭代器。由于迭代器不是恒定的,因此可以增加或减少或修改它,但是即使前向列表不是恒定的,也不能用于修改其内容。如果转发列表为空,则不会取消引用该函数返回的迭代器。
以下程序说明了该函数的用法:
程序1:
// CPP program to illustrate
// forward_list::cbegin();
#include
#include
using namespace std;
int main()
{
forward_list sample = { 45, 87, 6 };
// Get the first element by
// dereferencing the iterator
// returned by sample.cbegin()
cout << "1st element of sample: ";
cout << *sample.cbegin();
}
输出:
1st element of sample: 45
程式2:
#include
#include
using namespace std;
int main()
{
forward_list sample = { 7, 4, 9, 15 };
// Display the elements
cout << "sample: ";
for (auto it = sample.cbegin(); it != sample.cend(); it++)
cout << *it << " ";
}
输出:
sample: 7 4 9 15
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。