C++ string handling

The C++ programming language has support for string handling, mostly implemented in its standard library. The language standard specifies several string types, some inherited from C, some designed to make use of the language's features, such as classes and RAII. The most-used of these is std::string, while std::string_view is used for non-owning string views.

Source: Wikipedia — C++ string handling (CC BY-SA 4.0)

C++ string handling

The C++ programming language has support for string handling, mostly implemented in its standard library. The language standard specifies several string types, some inherited from C, some designed to make use of the language's features, such as classes and RAII. The most-used of these is std::string, while std::string_view is used for non-owning string views.

Source: Wikipedia "C++ string handling" · CC BY-SA 4.0

Share this article: X · Bluesky
Privacy Policy