C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 容器库
- 迭代器库
- std::begin, std::cbegin
- std::end, std::cend
- std::next
- std::reverse_iterator
- std::rbegin, std::crbegin
- std::indirectly_readable
- std::indirectly_writable
- std::weakly_incrementable
- std::prev
- std::move_iterator
- std::size, std::ssize
- std::empty
- std::data
- std::insert_iterator
- std::rend, std::crend
- std::incrementable
- std::input_or_output_iterator
- std::sentinel_for
- std::sized_sentinel_for, std::disable_sized_sentinel_for
- std::input_iterator
- std::output_iterator
- std::forward_iterator
- std::bidirectional_iterator
- std::random_access_iterator
- std::contiguous_iterator
- std::iterator_traits
- std::input_iterator_tag, std::output_iterator_tag, std::forward_iterator_tag, std::bidirectional_iterator_tag, std::random_access_iterator_tag, std::contiguous_iterator_tag
- std::iterator
- std::incrementable_traits
- std::indirectly_readable_traits
- std::iter_value_t, std::iter_reference_t, std::iter_difference_t, std::iter_rvalue_reference_t, std::iter_common_reference_t
- std::indirect_unary_invocable, std::indirectly_regular_unary_invocable
- std::indirect_unary_predicate
- std::indirect_binary_predicate
- std::indirect_equivalence_relation
- std::indirect_strict_weak_order
- std::indirectly_movable
- std::indirectly_movable_storable
- std::indirectly_copyable
- std::indirectly_copyable_storable
- std::indirectly_swappable
- std::indirectly_comparable
- std::permutable
- std::mergeable
- std::sortable
- std::indirect_result_t
- std::projected
- std::move_sentinel
- std::back_insert_iterator
- std::front_insert_iterator
- std::make_reverse_iterator
- std::make_move_iterator
- std::default_sentinel_t, std::default_sentinel
- std::unreachable_sentinel_t, std::unreachable_sentinel
- std::back_inserter
- std::front_inserter
- std::inserter
- std::istream_iterator
- std::ostream_iterator
- std::istreambuf_iterator
- std::ostreambuf_iterator
- std::advance
- std::distance
- 注释
- 范围库 (C++20)
- 算法库
- 数值库
- 输入/输出库
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
std::end, std::cend
定义于头文件 <iterator>
|
||
(1) | ||
template< class C > auto end( C& c ) -> decltype(c.end()); |
(C++11 起) (C++17 前) |
|
template< class C > constexpr auto end( C& c ) -> decltype(c.end()); |
(C++17 起) | |
(1) | ||
template< class C > auto end( const C& c ) -> decltype(c.end()); |
(C++11 起) (C++17 前) |
|
template< class C > constexpr auto end( const C& c ) -> decltype(c.end()); |
(C++17 起) | |
(2) | ||
template< class T, std::size_t N > T* end( T (&array)[N] ); |
(C++11 起) (C++14 前) |
|
template< class T, std::size_t N > constexpr T* end( T (&array)[N] ) noexcept; |
(C++14 起) | |
template< class C > constexpr auto cend( const C& c ) noexcept(/* see below */) |
(3) | (C++14 起) |
返回指向给定容器 c
或数组 array
结尾(即最末元素的后一元素)的迭代器。这些模板依赖于拥有合理实现的 C::end() 。
1) 准确返回 c.end() ,典型地是指向
c
所代表的序列末尾后一位置的迭代器。若 C
是标准容器 (Container) ,则在 c
非 const 限定时返回 C::iterator ,否则返回 C::const_iterator 。2) 返回指向数组
array
末尾的指针。
参数
c | - | 拥有 end 方法的容器
|
array | - | 任意类型的数组 |
返回值
指向 c
或 array
结尾的迭代器。注意容器或数组的结尾定义为最后一个合法元素的下一个元素。
异常
3)
noexcept 规定:
noexcept(noexcept(std::end(c)))
注意
除了包含于 <iterator>
,若包含下列任一头文件,则保证 std::end
与 std::cend
可用: <array>
、 <deque>
、 <forward_list>
、 <list>
、 <map>
、 <regex>
、 <set>
、 <span>
(C++20 起) 、 <string>
、 <string_view>
(C++17 起) 、 <unordered_map>
、 <unordered_set>
及 <vector>
。
用户定义重载
可为不暴露适合的 end()
成员函数的类提供 end
的自定义重载。标准库已提供下列重载:
特化 std::end (函数模板) | |
(C++11) |
特化的 std::end (函数模板) |
基于范围的 for 循环支持 (函数) | |
基于范围的 for 循环支持 (函数) |
类似 swap
的使用(描述于可交换 (Swappable) ), end
函数在泛型语境中的典型使用等价于 using std::end; end(arg); ,这允许 ADL 为用户定义类型所选择的重载,和出现于同一重载集中的标准库函数模板。
template<typename Container, typename Function> void for_each(Container&& cont, Function f) { using std::begin; auto it = begin(cont); using std::end; auto end_it = end(cont); while (it != end_it) { f(*it); ++it; } }
示例
运行此代码
#include <iostream> #include <vector> #include <iterator> #include <algorithm> int main() { std::vector<int> v = { 3, 1, 4 }; if (std::find(std::begin(v), std::end(v), 5) != std::end(v)) { std::cout << "found a 5 in vector v!\n"; } int a[] = { 5, 10, 15 }; if (std::find(std::begin(a), std::end(a), 5) != std::end(a)) { std::cout << "found a 5 in array a!\n"; } }
输出:
found a 5 in array a!
参阅
(C++11)(C++14) |
返回指向容器或数组起始的迭代器 (函数模板) |