Can I assume (bool)true == (int)1 for any C++ compiler ?
|
Yes. The casts are redundant. In your expression:
Integral promotion applies and the bool value will be promoted to an Reference: 4.7 [conv.integral] / 4: If the source type is |
|||||||||||||||||||||
|
|
Charles Bailey's answer is correct. The exact wording from the C++ standard is (ยง4.7/4): "If the source type is bool, the value false is converted to zero and the value true is converted to one." Edit: I see he's added the reference as well -- I'll delete this shortly, if I don't get distracted and forget... Edit2: Then again, it is probably worth noting that while the Boolean values themselves always convert to zero or one, a number of functions (especially from the C standard library) return values that are "basically Boolean", but represented as If you cast that to |
||||
|
|
|
According to the standard, you should be safe with that assumption. The C++ The thing to watch about for is mixing A lot of modern compilers will actually issue a warning for any code that implicitly tries to cast from |
|||
|
|
|
I've found different compilers return different results on true. I've also found that one is almost always better off comparing a bool to a bool instead of an int. Those ints tend to change value over time as your program evolves and if you assume true as 1, you can get bitten by an unrelated change elsewhere in your code. |
|||||||
|
|
You should never check for |
|||||||
|
|
No, TRUE can be arbitrary among compilers. Some will use 1, some -1 (all bits set, signed var), other compilers may use a different value. Even if the value is standardized, not all compilers may follow the standard. FALSE, however, is when all bits are clear, which only happens for the numeric value 0. |
|||||||
|
bool t = true; int n = 1; if (t == n) {...} ;– egrunin Apr 27 '10 at 21:07