std::literals::string_literals::operator""s
| Defined in header <string>
|
||
| (1) | ||
| std::string operator""s(const char *str, std::size_t len); |
(since C++14) (until C++20) |
|
| constexpr std::string operator""s(const char *str, std::size_t len); |
(since C++20) | |
| constexpr std::u8string operator""s(const char8_t *str, std::size_t len); |
(2) | (since C++20) |
| (3) | ||
| std::u16string operator""s(const char16_t *str, std::size_t len); |
(since C++14) (until C++20) |
|
| constexpr std::u16string operator""s(const char16_t *str, std::size_t len); |
(since C++20) | |
| (4) | ||
| std::u32string operator""s(const char32_t *str, std::size_t len); |
(since C++14) (until C++20) |
|
| constexpr std::u32string operator""s(const char32_t *str, std::size_t len); |
(since C++20) | |
| (5) | ||
| std::wstring operator""s(const wchar_t *str, std::size_t len); |
(since C++14) (until C++20) |
|
| constexpr std::wstring operator""s(const wchar_t *str, std::size_t len); |
(since C++20) | |
Forms a string literal of the desired type.
Contents |
[edit] Parameters
| str | - | pointer to the beginning of the raw character array literal |
| len | - | length of the raw character array literal |
[edit] Return value
The string literal.
[edit] Notes
These operators are declared in the namespace std::literals::string_literals, where both literals and string_literals are inline namespaces. Access to these operators can be gained with using namespace std::literals, using namespace std::string_literals, and using namespace std::literals::string_literals.
std::chrono::duration also defines operator""s, to represent literal seconds, but it is an arithmetic literal: 10.0s and 10s are ten seconds, but "10"s is a string.
[edit] Example
#include <string> #include <iostream> int main() { using namespace std::string_literals; std::string s1 = "abc\0\0def"; std::string s2 = "abc\0\0def"s; std::cout << "s1: " << s1.size() << " \"" << s1 << "\"\n"; std::cout << "s2: " << s2.size() << " \"" << s2 << "\"\n"; }
Possible output:
s1: 3 "abc" s2: 8 "abc^@^@def"
[edit] See also
constructs a basic_string (public member function) |

Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.
