vote up 62 vote down star
51

I work with java all day long. The most used idiom (code snippet) I'm programing in java, is to test if an object != null before I use it, to avoid a NullPointerException of course. But the code looks very ugly and becomes unreadable.

Is there a good alternative to avoid this code snippet?

Update: Pan, I was not clear with my question. I want to adress the necessity to test every object if you want to access a field or method of this object. For example:

...
if (someobject != null)
{
    someobject.doCalc();
}
...

in case I want avoid NullPointerException and didn't know exactly that the object can't be null. So my code get splattered with these tests.

Nevertheless thanks a lot for your answers, I got a bunch of new insight.

flag

80% accept rate

19 Answers

vote up 68 vote down check

This to me sounds like a reasonably common problem that junior to intermediate developers tend to face at some point: they either don't know or don't trust the contracts they are participating in and defensively overcheck for nulls. Additionally, when writing their own code, they tend to rely on returning nulls to indicate something thus requiring the caller to check for nulls.

To put this another way, there are two instances where null checking comes up:

  1. Where null is a valid response in terms of the contract; and

  2. Where it isn't a valid response.

(2) is easy. Either use asserts or let it fail. Asserts are a highly underused Java feature that was added in 1.4. The syntax is:

assert *<condition>*

or

assert *<condition>* : *<object>*

where <object>'s toString() output will be included in the error.

Assert throws an Error (AssertionError) is the condition is not true. By default, Java ignores asserts. You can enable the feature by passing the option -ea to the JVM. Its also more sophisticated than that where you can enable and disable asserts for individual classes and packages. This means that you can validate code with the asserts while developing and testing and disable them in a production environment although my testing has shown next to no performance impact from asserts.

Not using asserts in this case is OK because the code will just fail, which is what will happen if you use asserts. The only difference is that with asserts it might happen sooner, in a more meaningful way and possibly with extra information for you to figure out why it happened if you weren't expecting it.

(1) is a little harder. If you have no control over the code you're calling then you're stuck. If null is a valid response, you have to check for it.

If its code you do have control over however (and this is often the case) then its a different story. Avoid using nulls as a response. With methods that return collections, it's easy: return empty collections or arrays over nulls pretty much all the time.

With non-collections it might be harder. Consider this as an example: if you have this interfaces:

public interface Action {
  void doSomething();
}

public interface Parser {
  Action findAction(String userInput);
}

where Parser takes raw user input and finds something to do, perhaps if you're implementing a command line interface for something. Now you might make the contract that it returns null if theres no appropriate action. That leads the null checking you'er talking about.

An alternative solution is to never return null and instead do something like this:

public class MyParser implements Parser {
  private static Action DO_NOTHING = new Action() {
    public void doSomething() { /* do nothing */ }
  };

  public Action findAction(String userInput) {
    // ...
    if ( /* we can't find any actions */ ) {
      return DO_NOTHING;
    }
  }
}

Compare:

Parser parser = ParserFactory.getParser();
if (parser == null) {
  // now what?
  // this would be an example of where null isn't (or shouldn't be) a valid response
}
Action action = parser.getAction(someInput);
if (action == null) {
  // do nothing
} else {
  action.doSomething();
}

to

ParserFactory.getParser().findAction(someInput).doSomething();

which is a much better design because it leads to more concise code.

link|flag
10  
I disagree with your statements for the DO_NOTHING action. If the find action method cannot find an action, then returning null is the right thing to do. You've "found" an action in your code which isn't really found, which violates the principle of the method, to find a useable action. – MetroidFan2002 Nov 7 '08 at 18:36
If you ship a library, and want to enable assertions by force, you can use fa.jar See smallwiki.unibe.ch/adriankuhn/javacompiler/… – Adrian Kuhn Nov 10 '08 at 3:51
6  
I agree that null is overused in Java, especially with lists. So many apis would be better if they return an empty list/array/collection instead of null. Many times, null is used where an exception should be thrown instead. An exception should be thrown if the parser can't parse. – Laplie Nov 14 '08 at 1:53
very insightful, thank you! – javamonkey79 Feb 24 at 6:05
2  
In your 'getParser' example, I think I would argue that an exception should have been thrown if 'null' was going to be returned unless you can somehow construct a valid argument for why returning null is NOT an 'exceptional' case. – imaginaryboy Apr 2 at 15:05
show 2 more comments
vote up 0 vote down

Ultimately, the only way to completely solve this problem is by using a different programming language:

  • In Objective-C, you can do the equivalent of invoking a method on nil, and absolutely nothing will happen. This makes most null checks unnecessary but can make errors much harder to diagnose.
  • In Nice, a Java-derivated language, there are two versions of all types: a potentially-null version and a not-null version. You can only invoke methods on not-null types. Potentially-null types can be converted to not-null types through explicit checking for null. This makes it much easier to know where null checks are necessary and where they aren't.
link|flag
vote up -1 vote down

I would really advise against using assert, since it can be disabled in compile time, which would turn the null check useless.

link|flag
vote up 0 vote down

if ( "bar".equals(foo) ) { // ... } i do agree with this. because you get the string not the parameter which is we do not know about the value.

link|flag
vote up 3 vote down

Wow, I almost hate to add another answer when we have 57 different ways to recommend the NullObject pattern, but I think that some people interested in this question may like to know that there is a proposal on the table for Java 7 to add "null-safe handling"—a streamlined syntax for if-not-equal-null logic.

The example given by Alex Miller looks like this:

public String getPostcode(Person person) {  
  return person?.getAddress()?.getPostcode();  
}

The ?. means only de-reference the left identifier if it is not null, otherwise evaluate the remainder of the expression as null. Some people, like Java Posse member Dick Wall and the voters at Devoxx really love this proposal, but there is opposition too, on the grounds that it will actually encourage more use of null as a sentinel value.


Update: An official proposal for a null-safe operator in Java 7 has been submitted under Project Coin. The syntax is a little different than the example above, but it's the same notion.

link|flag
I think this is wrong. There should be a way to specify that a given variable is ALWAYS non-null. – Thorbjørn Ravn Andersen May 26 at 11:54
1  
Update: the proposal will not make Java7. See blogs.sun.com/darcy/entry/… . – Boris Terzic Aug 29 at 18:56
vote up 1 vote down

The google collections framework offers a good and elegant way to achieve the null check.

There is a method in a library class like this:

static <T> T checkNotNull(T e){
   if(e == null){
      throw new NullPointerException();
   }
   return e;
}

And the usage is (with import static):

...
void foo(int a, Person p){
   if(checkNotNull(p).getAge() > a){
      ...
   }else{
      ...
   }
}
...

or in your example:

checkNotNull(someobject);
someobject.doCalc();
link|flag
mmm, what is the difference? p.getAge() would throw the same NPE with less overhead and a clearer stack trace. What am I missing? – myso May 18 at 23:26
It is better to throw an IllegalArgumentException("e == null") in your example as it clearly indicates that it is a programmer-intended exception (along with enough information to actually allow the maintainer to identify the problem). NullPointerExceptions should be reserved for the JVM, as it then clearly indicates that this was unintentional (and usually happens somewhere hard to identify) – Thorbjørn Ravn Andersen May 26 at 11:56
vote up 0 vote down

I've tried the NullObjectPattern but for me is not always the best way to go. There are sometimes when a "no action" is not appropiate.

NullPointerException is a Runtime exception that means it's developers fault and with enough experience it tells you exactly where is the error.

Now to the answer:

Try to make all your attributes and its accessors as private as possible or avoid to expose them to the clients at all. You can have the argument values in the constructor of course, but by reducing the scope you don't let the client class pass an invalid value. If you need to modify the values, you can always create a new object. You check the values in the constructor only once and in the rest of the methods you can be almost sure that the values are not null.

Of course, experience is the better way to understand and apply this suggestion.

Byte!

link|flag
vote up 1 vote down

Only for this situation - Avoiding checking for null before a string compare:

if ( foo.equals("bar") ) { // ... }

will result in a NullPointerException if foo doesn't exist.

You can avoid that if you compare your Strings like this:

if ( "bar".equals(foo) ) { // ... }

link|flag
vote up 0 vote down

Wherever you pass an array or a Vector, initialise these to empty ones, instead of null. - This way you can avoid lots of checking for null and all is good :)

public class NonNullThing {

Vector vectorField = new Vector();

int[] arrayField = new int[0];

public NonNullThing() {

  // etc

}

}

link|flag
vote up 2 vote down

Asking that question points out that you may be interested in error handling strategies. Your team's architect should decide how to work errors. There are several ways to do this:

  1. allow the Exceptions to ripple through - catch them at the 'main loop' or in some other managing routine.

  2. check for error conditions and handle them appropriately

Sure do have a look at Aspect Oriented Programming, too - they have neat ways to insert if( o == null ) handleNull() into your bytecode.

link|flag
vote up 9 vote down

If null-values is not allowed

If your method called externally, start with something like this:

public void method(Object object) {
  if (object == null) {
    throw new IllegalArgumentException("...");
  }

In the rest of that method, you know that it's not null.

If it is an internal method (not part of an api), just document that it cannot be null, and that's it. Example:

public String getFirst3Chars(String text) {
  return text.subString(0, 3);
}

However, if your method just passes the value on, and the next method passes on etc. it could get problematic. In that case you may want to check the argument as above.

If null is allowed

This really depends. If find that I often do something like this:

if (object == null) {
  // something
} else {
  // something else
}

So I branch, and do two completely different things. There is no ugly code snippet, because I really need to do two different things depending on the data. For example, should I work on the input, or should I calculate a good default value?


It's actually rare for me to use the idiom "if (object != null && ...".

It may be easier to give you examples, if you show examples of where you typically use the idiom.

link|flag
vote up 4 vote down

Depending on what kind of objects you are checking you may be able to use some of the classes in the apache commons such as: apache commons lang and apache commons collections

Example:

String foo;
...
if( StringUtils.isBlank( foo ) ) {
   ///do something
}

or (depending on what you need to check):

String foo;
...
if( StringUtils.isEmpty( foo ) ) {
   ///do something
}

The StringUtils class is only one of many; there are quite a few good classes in the commons that do null safe manipulation.

link|flag
vote up 3 vote down

sometimes, you have methods that operate on its parameters that define a symmetric operation: a.f(b); <-> b.f(a);

if you know b can never be null, you can just swap it. most useful for equals: instead of foo.equals("bar"); better do "bar".equals(foo);

link|flag
vote up 13 vote down
  • If you consider an object should not be null (or it is a bug) use an assert.
  • If your method doesn't accept null params say it in the javadoc and use an assert.

You have to check for object != null only if you want to handle the case where the object may be null...

There is a proposal to add new annotations in Java7 to help with null / notnull params: http://tech.puredanger.com/java7/#jsr308

link|flag
vote up 7 vote down

Rather than Null Object Pattern -- which has its uses -- you might consider situations where the null object is a bug.

When the exception is thrown, examine the stack trace and work through the bug.

link|flag
Problem is that usually you loose context as the NullPointerException does not indicate WHICH variable was null, and you may have several "."-operations on the line. Using "if (foo == null) throw new RuntimeException("foo == null")" allows you to state explicitly WHAT was wrong, giving your stack trace much more value to those who have to fix it. – Thorbjørn Ravn Andersen Oct 31 at 9:02
vote up 2 vote down

You can use the Null Object design pattern.

link|flag
vote up 2 vote down

Null Objects

link|flag
vote up 31 vote down

Null Object pattern.

link|flag
1  
Be careful of the situations in which the Null Object Pattern is applied. Overusing it, or using it under the wrong conditions will cause more headaches than your check for null. – Robin Nov 7 '08 at 15:09
I agree - if Java were like Smalltalk (where nil actually is an object) then this is fine. In practice I have found that you don't always create Null instances because of the overhead: so there ends up being an amount of confusion between whether you are expecting null or NullObject back – oxbow_lakes Feb 15 at 19:56
A null instance is going to be immutable, so you only need to create one. – Tom Hawtin - tackline Sep 13 at 21:44
vote up 2 vote down

Look at "Null Object" pattern.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.