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*

link|improve this question

74% accept rate
I think that a temporary of type RWCString is constructed from the const char* string. This is more likely to happen because of this: RWCString str = "Y";. – AraK Jan 12 '11 at 11:24
Why are you using a third-party string library instead of std::string, exactly? – Karl Knechtel Jan 12 '11 at 12:43
Im working on existing code which uses this library. I came across this line and wondering if this will work always. – balki Jan 12 '11 at 13:14
feedback

1 Answer

up vote 0 down vote accepted

It is extremely likely that == is overloaded for comparisons between const char* and RWCString.

Otherwise either str is converted to const char * or the calls are ambiguous:

str == "YES" is ambiguous if there is an external or member operator== comparing two RWCStrings.

"YES" == str is ambiguous if there is an external operator== comparing two RWCStrings.

(assuming that the arguments to the operator== are passed normally -- either through a copy, or a const reference).

link|improve this answer
@ashot: the question states that there is a conversion to const char* (last sentence of question), so i guess, the answer is yes. – lijie Jan 12 '11 at 11:32
@liijie are you sure,that RWCString can implicitly convert to const char * ? Becouse If it can't and const char * can implicitly convert to RWCSTRing, than I can't see any ambiguous? – Ashot Martirosyan Jan 12 '11 at 11:34
@liijie OK, my fault :) – Ashot Martirosyan Jan 12 '11 at 11:35
feedback

Your Answer

 
or
required, but never shown

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