命名空间
变体
操作

std::basic_string_view<CharT,Traits>::data

来自 cppreference.com
 
 
 
 
constexpr const_pointer data() const noexcept;
(自 C++17 起)

返回指向底层字符数组的指针。指针使得范围 [data()data() + size()) 有效,并且其中的值与视图的值相对应。

内容

[编辑] 参数

(无)

[编辑] 返回值

指向底层字符数组的指针。

[编辑] 复杂度

常数。

[编辑] 备注

std::basic_string::data() 和字符串字面量不同,std::basic_string_view::data() 返回一个指向缓冲区的指针,该缓冲区不一定以空字符结尾,例如子字符串视图(例如来自 remove_suffix)。因此,将data() 传递给仅接受 const CharT* 并期望以空字符结尾的字符串的例程通常是一个错误。

[编辑] 示例

#include <cstring>
#include <cwchar>
#include <iostream>
#include <string>
#include <string_view>
 
int main()
{
    std::wstring_view wcstr_v = L"xyzzy";
    std::cout << std::wcslen(wcstr_v.data()) << '\n';
    // OK: the underlying character array is null-terminated
 
    char array[3] = {'B', 'a', 'r'};
    std::string_view array_v(array, sizeof array);
    // std::cout << std::strlen(array_v.data()) << '\n';
    // error: the underlying character array is not null-terminated
 
    std::string str(array_v.data(), array_v.size()); // OK
    std::cout << std::strlen(str.data()) << '\n';
    // OK: the underlying character array of a std::string is always null-terminated
}

输出

5
3

[编辑] 参见

访问第一个字符
(公共成员函数) [编辑]
访问最后一个字符
(公共成员函数) [编辑]
返回指向字符串第一个字符的指针
(std::basic_string<CharT,Traits,Allocator> 的公共成员函数) [编辑]