Simple question really; is there a difference between these values (and is there a difference between BOOL and bool)? A co-worker mentioned that they evaluate to different things in objective-c, but when i looked at the typedefs in their respective .h files, YES/TRUE/true were all defined to 1 and NO/FALSE/false were all defined to 0. Is there really a difference?
|
1
|
|
|
|
|
|
No there is not. C processes boolean expressions based on whether they evaluate to 0 or not 0. So:
means the same as
which is why you can evaluate any primitive type or expression as a boolean test (including, e.g. pointers). |
||
|
|
|
|
You might want to read the answers to this question. In summary, in Objective-C (from the definition in objc.h):
|
||
|
|
|
|
I think they add YES/NO to be more self-explanatory in many cases. For example:
sounds better than
Marco |
||
|
|
|
|
No, YES/NO is a different way to refer to TRUE/FALSE(1/0) Marco |
||
|
|
