RWCString str = "Y";
str.append("ES");
if("YES" == str)
cout << "YES == str" << endl;
if(str == "YES")
cout << "str == YES" << endl;
How does the implicit conversion take place in both cases? Which one is safe to use? RWCString is a string class which has a constructor taking const char* and an conversion operator to const char*
RWCStringis constructed from theconst char*string. This is more likely to happen because of this:RWCString str = "Y";. – AraK Jan 12 '11 at 11:24std::string, exactly? – Karl Knechtel Jan 12 '11 at 12:43