Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

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

      From cppreference.com
      <cpp‎ |string‎ |basic string view
       
       
       
      std::basic_string_view
       
      constexpr const_pointer data()constnoexcept;
      (since C++17)

      Returns a pointer to the underlying character array. The pointer is such that the range[data()data()+ size()) is valid and the values in it correspond to the values of the view.

      Contents

      [edit]Parameters

      (none)

      [edit]Return value

      A pointer to the underlying character array.

      [edit]Complexity

      Constant.

      [edit]Notes

      Unlikestd::basic_string::data() and string literals,std::basic_string_view::data() returns a pointer to a buffer that is not necessarily null-terminated, for example a substring view (e.g. fromremove_suffix). Therefore, it is typically a mistake to passdata() to a routine that takes just aconst CharT* and expects a null-terminated string.

      [edit]Example

      Run this code
      #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());// OKstd::cout<<std::strlen(str.data())<<'\n';// OK: the underlying character array of a std::string is always null-terminated}

      Output:

      53

      [edit]See also

      accesses the first character
      (public member function)[edit]
      accesses the last character
      (public member function)[edit]
      returns a pointer to the first character of a string
      (public member function ofstd::basic_string<CharT,Traits,Allocator>)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/string/basic_string_view/data&oldid=152778"

      [8]ページ先頭

      ©2009-2025 Movatter.jp