I'm trying to test for null parameters but you cannot compare an object to null.

The following is dead code:

    } else if(x == null){
        throw new NullPointerException("Parameter is null");
    }

How do I rewrite it to gain the desired effect?

link|improve this question

1  
which lang ?? Java?? – Fahim Parkar Feb 16 at 4:08
Yes this is Java – Ocasta Eshu Feb 16 at 4:17
What is dead code? It's not executing? Your code is fine. Another branch is probably matching and it's not reaching this point. Debug using an IDE like NetBeans or Eclipse and step through the code to learn what is happening. – Sarel Botha Feb 16 at 4:24
feedback

3 Answers

up vote 1 down vote accepted

You don't say explicitly, but this looks like Java because of the NullPointerException. Yes, you can compare an object reference to null, and so this code is fine. You might be mixing it up with SQL, where nothing compares equal to null.

link|improve this answer
feedback

To use handle in the Java literal sense of the word

Foo foo = bar.couldReturnNull();
try {
   foo.doSomething();
} catch (NullPointerException e) {
   System.out.println("bar.couldReturnNull() returned null");
   throw new NullPointerException();
}
link|improve this answer
feedback

In Java you can compare to the value null. The standard way to do this is as follows:

String s = null;
if(s == null)
{  
    //handle null
}  

Typically throwing an NPE is a poor practice in the real world.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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