vote up 1 vote down star

Have you ever seen any library/code that overloaded boolean operators, which is said to be evil? and What advantages does it give to the user?

flag

4 Answers

vote up 3 vote down check

The standard library itself overloads operator ! for input streams, so perhaps "evil" is a touch strong?

But I suspect that you were talking about && and ||. The reason for not overlaoding these is that their short-circuting abilities cannot be duplicated in the user defined overloads, and no I am not aware of any library that overloads them.

link|flag
vote up 2 vote down

I don't know if anyone has ever done it, but || is used by ORACLE SQL as a string concatenation. See here:

http://www.java2s.com/Code/Oracle/Char-Functions/StringStringconcatenatestwostrings.htm

So, if you were trying to make a library that mimicked Oracle SQL in C++ and had a SQLString class, I guess using || for concatenation would be considered normal.

link|flag
Actualy, the || operator is the ANSI SQL string concat operator - it's not specific to ORACLE. – Neil Butterworth Mar 19 at 17:35
ahh -- corrected – Lou Franco Mar 19 at 17:38
vote up 1 vote down

Overloading the boolean operators is useful for exactly that - when you want your type to be able to behave like a boolean.
like any other language feature it has it's advantages as well as its perils.

link|flag
The peril of overloading && and || is your version will not short circuit like the built-in operator versions. Thus many coding standards and style guides forbid overloading && and ||. – Brian Neal Mar 19 at 23:43
vote up 1 vote down

nice article which described why should be carefull with operator bool
http://www.artima.com/cppsource/safebool.html

boost have helpers for operator overloading

you should be logical carefull when overloading this operators. e.g. something::operator != should be same as ! something::operator ==

link|flag

Your Answer

Get an OpenID
or

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