does the following snippet throw NPE when argument is null?
public void doSomething(String string) {
if (string.trim().equals("") || string==null) {
[...]
}
}
I've found this in someone else's code (someone else who should be more experienced than me). Since I've been facing difficulties with this code, I want to ask if the comparison should be inverted or the Java compiler is someway smart enough to swap the operands. I don't have direct control over this code, nor this throws me NPE because of many catch blocks.
Thank you
evaluates its right-hand operand only if the value of its left-hand operand is false– Qwerky Jun 21 '11 at 13:48&&and||) in combination? Is there an order of execution? Or is it still left-to-right evaluation? – Martijn Courteaux Jun 21 '11 at 14:04