std::forward_list<T,Allocator>::begin, std::forward_list<T,Allocator>::cbegin
来自cppreference.com
| |
(1) | (C++11 起) |
| |
(2) | (C++11 起) |
| |
(3) | (C++11 起) |
返回指向 forward_list 首元素的迭代器。
如果 forward_list 为空,那么返回的迭代器等于 end()。
返回值
指向首元素的迭代器。
复杂度
常数。
示例
Run this code
#include <algorithm>
#include <cassert>
#include <iostream>
#include <numeric>
#include <string>
#include <forward_list>
int main()
{
std::forward_list<int> nums{1, 2, 4, 8, 16};
std::forward_list<std::string> fruits{"orange", "apple", "raspberry"};
std::forward_list<char> empty;
// 打印 forward_list nums。
std::for_each(nums.cbegin(), nums.cend(),
[](const int n) { std::cout << n << ' '; });
std::cout << '\n';
// 求和 forward_list nums 中的所有整数,仅打印结果。
std::cout << "求和 nums: "
<< std::accumulate(nums.cbegin(), nums.cend(), 0) << '\n';
// 打印 forward_list fruits 中的第一个水果,不检查是否有一个。
if (!fruits.empty())
std::cout << "第一个水果: " << *fruits.cbegin() << '\n';
if (empty.cbegin() == empty.cend())
std::cout << "forward_list ‘empty’ 确实是空的。\n";
// 修改 nums 中的第一个元素。
*nums.begin() = 32;
assert(*nums.cbegin() == 32);
}
输出:
1 2 4 8 16
求和 nums: 31
第一个水果: orange
forward_list 'empty' 确实是空的。
参阅
| 返回指向末尾的迭代器 (公开成员函数) | |
(C++11)(C++14) |
返回指向容器或数组起始的迭代器 (函数模板) |