| (1) | ||
const CharT* data() const; | (until C++11) | |
const CharT* data() const noexcept; | (since C++11) (until C++20) | |
constexpr const CharT* data() const noexcept; | (since C++20) | |
| (2) | ||
CharT* data() noexcept; | (since C++17) (until C++20) | |
constexpr CharT* data() noexcept; | (since C++20) |
Returns a pointer to the underlying array serving as character storage. The pointer is such that the range.
|
| (until C++11) |
|
| (since C++11) |
is valid and the values in it correspond to the values stored in the string.
| The returned array is not required to be null-terminated. If | (until C++11) |
| The returned array is null-terminated, that is, If | (since C++11) |
The pointer obtained from data() may be invalidated by:
operator[](), at(), front(), back(), begin(), end(), rbegin(), rend(). data has undefined behavior.data() + size() to any value other than CharT() has undefined behavior.(none).
A pointer to the underlying character storage.
|
| (until C++11) |
|
| (since C++11) |
Constant.
#include <algorithm>
#include <cassert>
#include <cstring>
#include <string>
int main()
{
std::string const s("Emplary");
assert(s.size() == std::strlen(s.data()));
assert(std::equal(s.begin(), s.end(), s.data()));
assert(std::equal(s.data(), s.data() + s.size(), s.begin()));
assert('\0' == *(s.data() + s.size()));
}|
(DR*) | accesses the first character (public member function) |
|
(DR*) | accesses the last character (public member function) |
| returns a non-modifiable standard C character array version of the string (public member function) |
|
|
(C++17) | returns a pointer to the first character of a view (public member function of std::basic_string_view<CharT,Traits>) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/string/basic_string/data