G
Grumble
Hello all,
What, if any, is the difference between
string s("toto");
string s = "toto";
In the first case, I am using the constructor:
basic_string(const value_type *ptr);
In the second case, I believe I first call another constructor:
basic_string();
and then operator= is executed...? Only I don't see any reference to
operator= in my documentation.
I am puzzled.
Nudge
What, if any, is the difference between
string s("toto");
string s = "toto";
In the first case, I am using the constructor:
basic_string(const value_type *ptr);
In the second case, I believe I first call another constructor:
basic_string();
and then operator= is executed...? Only I don't see any reference to
operator= in my documentation.
I am puzzled.
Nudge