Can I make an assumption that given
std::string str;
... // do something to str
Is the following statement is always true?
(str.empty() == (str == ""))
|
|
|
|
|
AnswerYes. Here is the relevant implementation from
DiscussionEven though the two forms are equivalent for Indeed, J.F. Sebastian comments that if you switch to using |
||||||||||
|
|
|
It should be. The ANSI/ISO standard states in 21.3.3
However, in clause 18 of 21.3.1 I think that the 100% correct statement is that
or something like that. If you haven't done anything strange, then They are logically similar but they are testing for different things. |
||
|
|
|
|
str.empty() is never slower, but might be faster than str == "". This depends on implementation. So you should use str.empty() just in case. This is a bit like using ++i instead of i++ to increase a counter (assuming you do not need the result of the increment operator itself). Your compiler might optimise, but you lose nothing using ++i, and might win something, so you are better off using ++i. Apart from performance issues, the answer to your question is yes; both expressions are logically equivalent. |
||
|
|
|
|
Some implementations might test for the null character as the first character in the string resulting in a slight speed increase over calculating the size of the string. I believe that this is not common however. |
||||||
|
|
|
Yes
*barring an overload of |
|||
|
|
|
|
Yes it is equivalent but allows the core code to change the implementation of what empty() actually means depending on OS/Hardware/anything and not affect your code at all. There is similiar practice in Java and .NET |
||
|
|
|
|
Normally, yes. But if someone decides to redefine an operator then all bets are off:
|
||||||||
|
std::wstring strthenstr.empty()will work butstr == ""will not even compile. – J.F. Sebastian Jan 27 at 13:30