命名空间
变体
操作

std::basic_string<CharT,Traits,Allocator>::end, std::basic_string<CharT,Traits,Allocator>::cend

来自 cppreference.com
< cpp‎ | string‎ | basic string
 
 
 
std::basic_string
成员函数
元素访问
迭代器
basic_string::endbasic_string::cend
(C++11)
容量
修改器
搜索
操作
常量
非成员函数
I/O
比较
(直到 C++20)(直到 C++20)(直到 C++20)(直到 C++20)(直到 C++20)(C++20)
数值转换
(C++11)(C++11)(C++11)
(C++11)(C++11)
(C++11)(C++11)(C++11)
(C++11)
(C++11)
字面量
辅助类
推导指南 (C++17)

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

返回指向字符串最后一个字符后面的字符的迭代器。此字符充当占位符,尝试访问它会导致未定义的行为。

range-begin-end.svg

内容

[编辑] 参数

(无)

[编辑] 返回值

指向最后一个字符后面的字符的迭代器。

[编辑] 复杂度

常数。

[编辑] 备注

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

[编辑] 示例

#include <algorithm>
#include <iostream>
#include <iterator>
#include <string>
 
int main()
{
    std::string s("Exemparl");
    std::next_permutation(s.begin(), s.end());
 
    std::string c;
    std::copy(s.cbegin(), s.cend(), std::back_inserter(c));
    std::cout << c << '\n'; // "Exemplar"
}

输出

Exemplar

[编辑] 另请参见

返回指向开头的迭代器
(公共成员函数) [编辑]
返回指向结尾的迭代器
(std::basic_string_view<CharT,Traits> 的公共成员函数) [编辑]