Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Consider the following Java source:

if( agents != null ) {
  for( Iterator iter = agents.keySet().iterator(); iter.hasNext(); ) {
    // Code that uses iter.next() ...
    //
  }
}

The agents is a HashMap.

Why does the for statement sometimes throw a NullPointerException?

Thank you.

share|improve this question
2  
Ehm, what is NPE? – Bart van Heukelom Mar 16 '10 at 21:22
2  
@Bart van Heukelom: NullPointerException – Powerlord Mar 16 '10 at 21:24

4 Answers

up vote 7 down vote accepted

Thread Safety

If your code is multi-threaded, then it is possible. For example:

public class C {
  private Hashtable agents = new Hashtable();

  public iterate() {
    if( agents != null ) {
      for (Iterator iter = agents.keySet().iterator(); iter.hasNext();) {
        // Code goes here
      }
    }
}

If another thread sets agents to null immediately after the if statement executes (but before the for loop), then you will get a NullPointerException. Avoid this by using accessors (combined with lazy initialization).

Also, as others have mentioned, avoid such looping constructs in favour of generics, if possible. See other answers for details.

Accessors offer Protection

If you always use the following pattern you will never have NullPointerExceptions in your source code (third-party code, on the other hand, might have issues that cause your code to fail, indirectly, which cannot be easily avoided).

public class C {
  private Hashtable agents;

  private synchronized Hashtable getAgents() {
    if( this.agents == null ) {
      this.agents = new Hashtable();
    }

    return this.agents;
  }

  public iterate() {
    Hashtable agents = getAgents();

    for (Iterator iter = agents.keySet().iterator(); iter.hasNext();) {
      // Code goes here
    }
  }
}

The code that iterates over the agents no longer needs to check for null. This code is much more robost for many reasons. You can substitute Hashmap (or any other abstract data type, such as ConcurrentHashMap<K,V>) for Hashtable.

Open-Closed Principle

If you were feeling especially generous with your time you could go as far as:

public class C {
  private Hashtable agents;

  private synchronized Hashtable getAgents() {
    if( this.agents == null ) {
      this.agents = createAgents();
    }

    return this.agents;
  }

  public iterate() {
    Iterator i = getAgentKeyIterator();

    while( i.hasNext() ) {
      // Code that uses i.next() ...
    }
  }

  protected Hashtable createAgents() {
    return new Hashtable();
  }

  private Iterator getAgentKeyIterator() {
    return getAgentKeys().iterator();
  }

  private KeySet getAgentKeys() {
    return getAgents().keySet();
  }
}

This would allow subclasses (written by other developers) to substitute their own subclass of the abstract data type being used (allowing the system greater flexibility in keeping with the Open-Closed Principle), without having to modify (or copy/waste) your original work.

share|improve this answer
I would think a ConcurrentHashMap<K, V> would be preferable to a Hashtable. – Powerlord Mar 16 '10 at 21:26
I think the multi threaded environment might explanation is plausible, let me poke around more on it, thanks. – Tiberiu Mar 16 '10 at 21:45

Shouldn't that be a while loop?

if (agents != null) {
    Iterator iter = agents.keyset().iterator();
    while (iter.hasNext()) {
        //some stuffs here
    }
}

or a for each?

if (agents != null) {
    //Assuming the key is a String
    for (String key : agents.keyset()) {
        //some stuffs here
    }
}
share|improve this answer
1  
My thoughts too...? – Richie_W Mar 16 '10 at 21:26
I'd say that a for loop is more appropriate for an Iterator. I would not use a while loop because the Iterator is then visible to all code after the while. – Steve Kuo Mar 16 '10 at 21:29
@Steve Kuo: Personally, I like the for each style loop the best, and use it instead of dealing with Iterators directly. – Powerlord Mar 16 '10 at 21:31
1  
Agreed, for each is better then using the Iterator directly (unless you need to call Iterator.remove()). – Steve Kuo Mar 16 '10 at 21:39

it's unlikey. post your full stack trace.

share|improve this answer
1  
It is possible, though, however unlikely. Most programmers riddle their software with code that checks a class-scope variable for null then uses it immediately afterwards. Such code is not thread safe. – Dave Jarvis Mar 26 '10 at 16:00

Make sure you don't set the iter to null inside the loop.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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