std::basic_string::end, std::basic_string::cend
来自cppreference.com
< cpp | string | basic string
iterator end(); |
||
const_iterator end() const; |
||
const_iterator cend() const; |
(C++11 起) | |
返回指向后随字符串末字符的字符的迭代器。此字符表现为占位符,试图访问它导致未定义行为。
目录 |
[编辑] 参数
(无)
[编辑] 返回值
指向后随尾字符的字符的迭代器
[编辑] 异常
(无) | (C++11 前) |
noexcept 规定: noexcept |
(C++11 起) |
[编辑] 复杂度
常数
[编辑] 示例
运行此代码
#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
[编辑] 参阅
(C++11) |
返回指向起始的迭代器 (公开成员函数) |