Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I wonder if Objective-C does care about whether I write & or &&? I believe one ampersand (&) would or should cause that if the LEFT side is already false, then the right side won't be evaluated.

Does this apply to Objective-C?

share|improve this question

2 Answers

up vote 13 down vote accepted

Yes. The operators function identically in C and Objective-C.

Just like in C (or C++, if you're using Objective-C++) & and | are bit-wise and && and || are logical (and short-circuit). Bit-wise operators (& and |) are not short-circuit.

See Operators in C and C++

share|improve this answer
So I just got that the wrong way around. && will not evaluate the right side when the left is already false, but & will evaluate both anyways. correct? – Proud Member Nov 21 '10 at 20:58
@BugAlert Correct. – user166390 Nov 21 '10 at 21:00
3  
And && has a boolean result, while & does not. – Wevah Nov 21 '10 at 22:09

Objective-C uses the C bitwise and logical operators (& is bitwise and && is logical). The single & will evaluate both expressions.

share|improve this answer

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.