vote up 3 vote down star

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?

flag

7 Answers

vote up 2 vote down check
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|flag
vote up 24 vote down

Making it more readable is a technical reason.

link|flag
vote up 4 vote down

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|flag
vote up 3 vote down

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|flag
good explanation – SoloBold Mar 27 at 20:04
you can still use true/false in objective-c – zPesk Mar 27 at 20:09
@zPesk: Exactly. @SoloBold: Thanks :) – thenduks Mar 27 at 20:47
vote up 3 vote down

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

link|flag
vote up 1 vote down

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|flag
vote up 0 vote down

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|flag
I don't think they reinvented the wheel, but just add clarity. And it does, just that. – Rev316 Mar 27 at 19:53
1  
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 at 23:48

Your Answer

Get an OpenID
or

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