Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

7 Answers

up vote 13 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];

share|improve this answer

Making it more readable is a technical reason.

share|improve this answer

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.

share|improve this answer

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

share|improve this answer

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.

share|improve this answer
good explanation – wprl 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

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.

share|improve this answer

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)..

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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