In Java, you would usually say that
if(someBool != false)
is the same as
if(someBool)
But what if someBool is not of type boolean but Boolean, and its value is null?
|
In Java, you would usually say that
is the same as
But what if |
|||||||
|
|
It will throw a But that only means that you must not allow a |
|||
|
|
|
If you want to handle
|
|||||||||||||
|
|
I did a little test:
The output is surprising:
The first NPE is to be expected, because o will be autounboxed (and that fails because it's null). The second happens for the same reason, but it doesn't feel natural. Anyway, the solution is to do:
|
|||
|
|
|
If
Since Boolean can be |
|||
|
|
|
As Boolean will give you an object, you must always check for NULL before working on the object |
|||
|
|
|
Good illustrations of the difference between the primitive boolean & the object Boolean. The former can be only true or false. The latter can be true, false, or unknown/undefined. (i.e., null). Which you use depends on whether you want to deal with two use cases or three. |
|||
|