In a C++ project of mine I'm one step before replacing all char* with std::string but I find one certain occasion where std::string fails miserably.
Imagine I have these 2 functions:
void foo1(const std::string& s)
{
...
}
void foo2(const char* s)
{
...
}
If I write something like this:
const char* SL = "Hello to all!";
foo1(SL); // calls malloc, memcpy, free
foo2(SL);
in foo1 the SL will implicitly converted into std::string. This means that the std::string constructor will allocate memory and it will copy the string literal to that buffer. In foo2 though nothing of all these will happen.
In most implementations std::string is supposed to be super optimized (Copy On Write for instance) but when I construct it with a const char* it is not. And my question is this: Why this happens? Am I missing something? Is my standard library not optimized enough or for some reason (that I'm not aware of) this is totally unsafe?