std::basic_string_view<CharT,Traits>::back
来自cppreference.com
< cpp | string | basic string view
constexpr const_reference back() const; |
(C++17 起) | |
返回到视图末字符的引用,若 empty() == true 则行为未定义。
参数
(无)
返回值
到末字符的引用,等价于 operator[](size() - 1)。
复杂度
常数。
示例
运行此代码
#include <iostream> #include <string_view> int main() { for (std::string_view str{"ABCDEF"}; !str.empty(); str.remove_suffix(1)) std::cout << str.back() << ' ' << str << '\n'; }
输出:
F ABCDEF E ABCDE D ABCD C ABC B AB A A
参阅
访问首个字符 (公开成员函数) | |
检查视图是否为空 (公开成员函数) | |
(DR*) |
访问最后的字符 ( std::basic_string<CharT,Traits,Allocator> 的公开成员函数) |