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)
容量
操作
搜索
常量
推导指引 (C++17)
非成员函数
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)
辅助类
 
(1)
iterator end();
(C++11 前)
iterator end() noexcept;
(C++11 起)
(C++20 前)
constexpr iterator end() noexcept;
(C++20 起)
(2)
const_iterator end() const;
(C++11 前)
const_iterator end() const noexcept;
(C++11 起)
(C++20 前)
constexpr const_iterator end() const noexcept;
(C++20 起)
(3)
const_iterator cend() const noexcept;
(C++11 起)
(C++20 前)
constexpr const_iterator cend() const noexcept;
(C++20 起)

返回指向后随字符串末字符的字符的迭代器。此字符表现为占位符,试图访问它导致未定义行为。

range-begin-end.svg

参数

(无)

返回值

指向后随尾字符的字符的迭代器

复杂度

常数

示例

#include <iostream>
#include <algorithm>
#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

参阅

返回指向起始的迭代器
(公开成员函数)