21.1 Introduction1
The class template basic_string
provides typical string-manipulation operations such as copying, searching, etc. The template definition and all support facilities are defined in namespace std
; these include the typedef
statement
typedef basic_string<char> string;
that creates the alias type string
for basic_string<char>
. A typedef
is also provided for the wchar_t
type (wstring
). Type wchar_t
2 stores characters (e.g., two-byte characters, four-byte characters, etc.) for supporting other character sets. We use string
exclusively ...
Get C++ How to Program, 10/e now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.