Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
String literal
(section)
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
=== Constructor functions === C++ has two styles of string, one inherited from C (delimited by <code>"</code>), and the safer <code>std::string</code> in the C++ Standard Library. The <code>std::string</code> class is frequently used in the same way a string literal would be used in other languages, and is often preferred to C-style strings for its greater flexibility and safety. But it comes with a performance penalty for string literals, as <code>std::string</code> usually allocates memory dynamically, and must copy the C-style string literal to it at run time. Before C++11, there was no literal for C++ strings (C++11 allows <code>"this is a C++ string"s</code> with the <code>s</code> at the end of the literal), so the normal constructor syntax was used, for example: * {{code|2=cpp|1=std::string str = "initializer syntax";}} * {{code|2=cpp|1=std::string str("converting constructor syntax");}} * {{code|2=cpp|1=std::string str = string("explicit constructor syntax");}} all of which have the same interpretation. Since C++11, there is also new constructor syntax: * {{code|2=cpp|1=std::string str{"uniform initializer syntax"};}} * {{code|2=cpp|1=auto str = "constexpr literal syntax"s;}}
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)