vote up 5 vote down star
1

std::string provides const char* c_str ( ) const which:

Get C string equivalent

Generates a null-terminated sequence of characters (c-string) with the same content as the string object and returns it as a pointer to an array of characters.

A terminating null character is automatically appended.

The returned array points to an internal location with the required storage space for this sequence of characters plus its terminating null-character, but the values in this array should not be modified in the program and are only granted to remain unchanged until the next call to a non-constant member function of the string object.

Why don't they just define operator const char*() const {return c_str();} ?

flag

7 Answers

vote up 10 vote down check

From the C++ Programming Language 20.3.7 (emphasis mine):

Conversion to a C-style string could have been provided by an operator const char*() rather than c_str(). This would have provided the convenience of an implicit conversion at the cost of surprises in cases in which such a conversion was unexpected.

link|flag
Care to explain what would be the costly surprise? – ChrisW Jan 29 at 15:52
3  
1. When conversion to a C string causes a memory reallocation because std::string doesn't necessarily store a NULL terminator 2. When the std::string goes out of scope and you are left with a dangling pointer to freed memory – Clay Jan 29 at 15:58
I think the short answer is with resolving overloads. Additionally std::string can hold a \0 character that doesn't mean the end of the std::string. – sixlettervariables Jan 29 at 16:02
1  
It is a matter of overloads. "char *" doesn't behave like any sensible person would expect a string to, and it's useful to have expressions like "string_1 - string_2" or "string_1 - 2" be flagged as compiler errors rather than compile to nonsense. – David Thornley Jan 29 at 20:40
vote up 1 vote down

I addition to the rationale provided in the specification (unexpected surprises), if you're mixing C API calls with std::string, you really need to get into the habit of using the ::c_ctr() method. If you ever call a varargs function (eg: printf, or equivalent) which requires a const char*, and you pass a std::string directly (without calling the extraction method), you won't get a compile error (no type checking for varargs functions), but you will get a runtime error (class layout is not binary identical to a const char*).

Incidentally, CString (in MFC) takes the opposite approach: it has an implicit cast, and the class layout is binary-compatible with const char* (or const w_char*, if compiling for wide character strings, ie: "Unicode").

link|flag
I work with g++ and it always flags passing any type of object as varargs argument with a warning and a message: if this piece of code gets run, the program will terminate unexpectedly. It is not mandated in the standard but should be flagged by most compilers – dribeas Jan 30 at 0:16
vote up 2 vote down

I see at least two problems with the implicit conversion:

  • Even the explicit conversion that c___str() provides is dangerous enough as is. I've seen a lot of cases where the pointer was stored to be used after the lifetime of the original string object had ended (or the object was modified thus invalidating the pointer). With the explicit call to c_str() you hopefully are aware of these issues. But with the implicit conversion it would be very easy to cause undefined behavior as in:

    const char *filename = string("/tmp/") + name;
    ofstream tmpfile(filename); // UB
  • The conversion would also happen in some cases where you wouldn't expect it and the semantics are surprising to say the least:

    string name;
    if (name) // always true
     ;
    name-2; // pointer arithmetic + UB
    These could be avoided by some means but why get into this trouble in the first place?

link|flag
vote up 4 vote down

The Josuttis book says the following:

This is for safety reasons to prevent unintended type conversions that result in strange behavior (type char * often has strange behavior) and ambiguities (for example, in an expression that combines a string and a C-string it would be possible to convert string into char * and vice versa).

link|flag
I was just typing the exact same quote :) – 17 of 26 Jan 29 at 15:43
vote up 3 vote down

Because implicit conversions almost never behave as you expect. They can give surprising results in overload resolution, so it's usually better to provide an explicit conversion as std::string does.

link|flag
vote up 1 vote down

Because C-style strings are a source of bugs and many security problems it's way better to make the conversion explicitly.

link|flag
Irrelevant here. The poster is apparently going to use C-style strings anyway. – David Thornley Jan 29 at 20:36
vote up 2 vote down

That's probably because this conversion would have surprising and peculiar semantics. Particularly, the fourth paragraph you quote.

Another reason is that there is an implicit conversion const char* -> string, and this would be just the converse, which would mean strange behavior wrt overload resolution (you shouldn't make both implicit conversions A->B and B->A).

link|flag
i know the experts knew what they are doing, but it strikes me that they would make the string class so hard to use without good reason. – Dustin Getz Jan 29 at 15:40
I wouldn't say "so hard to use". But if you find typing 7 characters hard, well... – jpalecek Jan 29 at 15:49
If you find yourself converting to char* often, you probably need to rethink your design. – rmeador Jan 29 at 16:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.