std::vector<T,Allocator>::end, std::vector<T,Allocator>::cend

来自cppreference.com
< cpp‎ | container‎ | vector

 
 
 
 
(1)
iterator end();
(C++11 前)
iterator end() noexcept;
(C++11 起)
(C++20 起为 constexpr)
(2)
const_iterator end() const;
(C++11 前)
const_iterator end() const noexcept;
(C++11 起)
(C++20 起为 constexpr)
const_iterator cend() const noexcept;
(3) (C++11 起)
(C++20 起为 constexpr)

返回指向 vector 末元素后一元素的迭代器。

此元素表现为占位符;试图访问它导致未定义行为。

range-begin-end.svg

参数

(无)

返回值

指向后随最后元素的迭代器。

复杂度

常数。

注解

libc++ 将 cend() 向后移植到 C++98 模式。

示例

#include <algorithm>
#include <iostream>
#include <numeric>
#include <string>
#include <vector>
 
int main()
{
    std::vector<int> nums{1, 2, 4, 8, 16};
    std::vector<std::string> fruits{"orange", "apple", "raspberry"};
    std::vector<char> empty;
 
    // 打印 vector。
    std::for_each(nums.begin(), nums.end(), [](const int n) { std::cout << n << ' '; });
    std::cout << '\n';
 
    // 求和 vector nums 中的所有整数(若存在),仅打印结果。
    std::cout << "求和 nums: "
              << std::accumulate(nums.begin(), nums.end(), 0) << '\n';
 
    // 打印 vector fruits 中的第一个水果,不检查是否有一个。
    if (!fruits.empty())
        std::cout << "第一个水果: " << *fruits.begin() << '\n';
 
    if (empty.begin() == empty.end())
        std::cout << "vector 'empty' 确实是空的。\n";
}

输出:

1 2 4 8 16
求和 nums: 31
第一个水果: orange
vector 'empty' 确实是空的。

参阅

返回指向起始的迭代器
(公开成员函数)
(C++11)(C++14)
返回指向容器或数组结尾的迭代器
(函数模板)