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?
|
|
|
|
|
|
|
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. |
||
|
|
|
|
I don't know if anyone has ever done it, but || is used by http://www.java2s.com/Code/Oracle/Char-Functions/StringStringconcatenatestwostrings.htm So, if you were trying to make a library that mimicked |
||||
|
|
|
Overloading the boolean operators is useful for exactly that - when you want your type to be able to behave like a boolean. |
||
|
|
|
nice article which described why should be carefull with operator bool 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 == |
|||
|
|
