Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java: check for null or allow exception handling

Tags:

java

I'm wondering about the cost of using a try/exception to handle nulls compared to using an if statement to check for nulls first.

To provide more information. There's a > 50% chance of getting nulls, because in this app. it is common to have a null if no data has been entered... so to attempt a calculation using a null is commonplace.

This being said, would it improve performance if I use an if statement to check for null first before calculation and just not attempt the calculation in the first place, or is less expensive to just let the exception be thrown and handle it?

thanks for any suggestions :-)

Thanks for great thought provoking feedback! Here's a PSEUDOcode example to clarify the original question:

BigDecimal value1 = null //assume value1 came from DB as null
BigDecimal divisor = new BigDecimal("2.0");

try{
    if(value1 != null){ //does this enhance performance?... >50% chance that value1 WILL be null
        value1.divide(divisor);
    }
}
catch (Exception e){
    //process, log etc. the exception
    //do this EVERYTIME I get null... or use an if statement
    //to capture other exceptions.
}
like image 617
AJay Avatar asked Jul 11 '10 16:07

AJay


People also ask

How do you handle a null check in Java?

In order to check whether a Java object is Null or not, we can either use the isNull() method of the Objects class or comparison operator.

Should you always check for null?

The question is not so much whether you should check for null or let the runtime throw an exception; it is how you should respond to such an unexpected situation. There is no general rule which one is the best solution.

Why is checking for null a good practice?

It is a good idea to check for null explicitly because: You can catch the error earlier. You can provide a more descriptive error message.

How do you check for null in optional?

Optional from nullable value: You can create an optional object from a nullable value using the static factoy method Optional. ofNullable . The advantage over using this method is if the given value is null then it returns an empty optional and rest of the operations performed on it will be supressed.


2 Answers

Try and catch are close to "free" but throws can be very expensive. Typically VM creators do not optimize exception paths since, well, they are exceptional (supposed to be rare).

NullPointerException indicates a programmer mistake (RuntimeException) and should not be caught. Instead of catching the NullPointerException you should fix your code to cause the exception not to be thrown in the first place.

Worse yet, if you catch the NullPointerException and a different part of the calculation code throws NullPointerException than the one you expect to throw it you have now masked a bug.

To fully answer your question, I would implement it one way, profile it, and then implement it the other way and profile it... then I would only use the one with the if statement that avoids throwing the NullPointerException regardless of which is faster simply because of the point above.

like image 188
TofuBeer Avatar answered Sep 30 '22 20:09

TofuBeer


I'd recommend checking for null and not doing the calculation rather than throwing an exception.

An exception should be "exceptional" and rare, not a way to manage flow of control.

I'd also suggest that you establish a contract with your clients regarding input parameters. If nulls are allowed spell it out; if they're not, make it clear what should be passed, default values, and what you promise to return if a null value is passed.

like image 43
duffymo Avatar answered Sep 30 '22 18:09

duffymo