When checking for nulls I use :
String str;
if(str == null){
}
but ive seen :
if(null == str){
}
Is there any advantage of using one over the other? I think this is just to help readability although I dont think it does ?
|
When checking for nulls I use :
but ive seen :
Is there any advantage of using one over the other? I think this is just to help readability although I dont think it does ? |
|||
|
The second version ( They both result in the same behavior, but the second one has one advantage: It prevents you from accidentally changing a variable, when you forget one |
|||
|
|
|
The
the code will not compile, since This coding style has never had any usefulness in Java, where reference assignments cannot be used as boolean expressions. It could even be considered counter-intuitive; in their natural language most people will say "if X is null...", or "if X is equal to 17...", rather than "if null is equal to X...". |
|||||||||
|
|
There's no difference between the two other than readability. Use whichever makes more sense to you. |
|||||||||||||||||
|
|
There is no real difference. However the second is considered less error prone. In the first case you would not get an error if you tried to do
which is something you usually don't do in conditionals. Also, you get to think about the actual condition first, which is a good practice. |
|||
|
|
is a programming idiom from c/c++, where the assignment operator
which sets opens and assigns in one line. However, this means that people often type This doesn't apply to java. |
|||
|
|
|
As you stated readability is the most important reason. Reading it out loud, the (null == str) does not read well. It's almost like reading right to left. (str == null) reads much better. In addition, I think the following needs to be taken into consideration:
vs.
I would expect the positive (str == null) and the negative to be written in the same manner, which is another reason I would favor the top set. |
||||
|
|
|
|
||||
|
|
T Objects.requireNonNull(T[, String])might be of your interest. – Philipp Reichart Jun 11 '12 at 16:05