up vote 5 down vote favorite
share [g+] share [fb]

Is there any technical reason why Objective-C uses YES and NO instead of 1 and 0, or is it simply to make it more readable?

link|improve this question

feedback

7 Answers

up vote 7 down vote accepted
typedef signed char        BOOL; 
// BOOL is explicitly signed so @encode(BOOL) == "c" rather than "C" 
// even if -funsigned-char is used.
#define OBJC_BOOL_DEFINED


#define YES             (BOOL)1
#define NO              (BOOL)0

(For reference)

[button setAttr:YES];

Sounds nicer IMHO then...

[button setAttr:TRUE];

link|improve this answer
feedback

Making it more readable is a technical reason.

link|improve this answer
feedback

C (on which Objective-C is based) didn't have a boolean type until C99.

Objective-C was created in the 80s and defined it's own boolean type.

link|improve this answer
feedback

Because the programmer means yes and no, not 1 and 0.

link|improve this answer
feedback

The same reason most languages use true and false... You can use 1 and 0 if you like, same as any of those other languages.

Really, if you think about it, we're talking about:

#define YES 1
#define NO  0

It's simply nicer to read.

link|improve this answer
good explanation – SoloBold Mar 27 '09 at 20:04
you can still use true/false in objective-c – zPesk Mar 27 '09 at 20:09
@zPesk: Exactly. @SoloBold: Thanks :) – rfunduk Mar 27 '09 at 20:47
feedback

It's just syntax, there's no technical reason for it. They just use YES/NO for their BOOL instead of true/false like c++ does.

link|improve this answer
feedback

It's the same as true/false..

Don't ask me why they reinvented the wheel and changed the names.

My pesonal guess is, that the language designer thought it would be cool to be different... (Yes, I know I will get downvotes from the fan-boys)..

link|improve this answer
I don't think they reinvented the wheel, but just add clarity. And it does, just that. – Rev316 Mar 27 '09 at 19:53
6  
It's not so much that they "reinvented" the wheel. They preceeded the implementation of booleans in C. Having nothing to copy, they implemented it as they chose. – Matt Gallagher Mar 27 '09 at 23:48
The Apple wheel: youtube.com/watch?v=9BnLbv6QYcA – Danyal Aytekin Dec 1 '11 at 12:34
feedback

Your Answer

 
or
required, but never shown

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