Is there any reason why Java booleans take only true or false why not 1 or 0 also?
|
Java, unlike languages like C and C++, treats |
|||||||||||||||||||
|
|
Because booleans have two values: 1 and 0 are integers, and there is no reason to confuse things by making them "alternative true" and "alternative false" (or the other way round for those used to Unix exit codes?). With strong typing in Java there should only ever be exactly two primitive boolean values. EDIT: Note that you can easily write a conversion function if you want:
though I wouldn't recommend this. Note how you cannot guarantee that an So instead of the conversion function, get used to using |
|||||||
|
|
Because the people who created Java wanted boolean to mean unambiguously true or false, not 1 or 0. |
|||
|
|
|
One thing that other answers haven't pointed out is that one advantage of not treating integers as truth values is that it avoids this C / C++ bug syndrome:
In C / C++, the mistaken use of In Java, that is a compilation error, because the value of the assigment
... which anyone with an ounce of "good taste" would write as ...
|
||||
|
|
|
Because Java is a strong typed programming language. PHP and Javascript for example are weak typed. |
|||
|
|
|
Being specific about this keeps you away from the whole TRUE in VB is -1 and in other langauges true is just NON ZERO. Keeping the boolean field as true or false keeps java outside of this argument. |
|||
|
|
|
On a related note: the java compiler uses int to represent boolean since JVM has a limited support for the boolean type.See Section 3.3.4 The boolean type. In JVM, the integer zero represents false, and any non-zero integer represents true (Source : Inside Java Virtual Machine by Bill Venners) |
|||||||||
|
FILE_NOT_FOUND– Pete Kirkham Jan 6 '10 at 18:32