std::basic_string_view<CharT,Traits>::front
来自 cppreference.com
< cpp | string | basic string view
constexpr const_reference front() const; |
(自 C++17 起) | |
返回视图中第一个字符的引用。如果 empty() == true,则行为未定义。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
第一个字符的引用,等效于 operator[](0).
[编辑] 复杂度
常数。
[编辑] 示例
运行此代码
#include <iostream> #include <string_view> int main() { for (std::string_view str{"ABCDEF"}; !str.empty(); str.remove_prefix(1)) std::cout << str.front() << ' ' << str << '\n'; }
输出
A ABCDEF B BCDEF C CDEF D DEF E EF F F
[编辑] 另请参阅
访问最后一个字符 (公共成员函数) | |
检查视图是否为空 (公共成员函数) | |
(DR*) |
访问第一个字符 ( std::basic_string<CharT,Traits,Allocator> 的公共成员函数) |