命名空间
变体
操作

std::basic_string_view<CharT,Traits>::begin,std::basic_string_view<CharT,Traits>::cbegin

来自 cppreference.com
 
 
 
 
constexpr const_iterator begin() const noexcept;
(自 C++17 起)
constexpr const_iterator cbegin() const noexcept;
(自 C++17 起)

返回指向视图第一个字符的迭代器。

range-begin-end.svg

内容

[编辑] 参数

(无)

[编辑] 返回值

指向第一个字符的 const_iterator

[编辑] 复杂度

常数。

[编辑] 示例

#include <concepts>
#include <string_view>
 
int main()
{
    constexpr std::string_view str_view("abcd");
 
    constexpr auto begin = str_view.begin();
    constexpr auto cbegin = str_view.cbegin();
    static_assert(
        *begin == 'a' and
        *cbegin == 'a' and
        *begin == *cbegin and
        begin == cbegin and
        std::same_as<decltype(begin), decltype(cbegin)>);
}

[编辑] 另请参阅

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