vote up 1 vote down star

I am trying to verify whether an object is null or not and i am using this syntax:

void renderSearch(Customer c){
         System.out.println("search customer rendering>...");
         try {
             if(!c.equals(null)){            
                 System.out.println("search customer  found...");
             }else{               
                 System.out.println("search customer not found...");
             }
         } catch (Exception e) {
             System.err.println ("search customer rendering error: "
                                     + e.getMessage()+"-"+e.getClass());
         }
     }

I get the following exception :

search customer rendering error: null class java.lang.NullPointerException

I thought that I was considering this possibility with my if and else loop. Any help would be appreciated.

flag

plus. if and else is not called a loop. its a condition – Midhat Jun 15 at 4:00

5 Answers

vote up 9 vote down check

Try c != null in your if statement. You're not comparing the objects themselves, you're comparing their references.

link|flag
vote up 8 vote down
!c.equals(null)

That line is calling the equals method on c, and if c is null then you'll get that error because you can't call any methods on null. Instead you should be using

c != null
link|flag
vote up 6 vote down

Use c == null, since you're comparing references, not objects.

link|flag
vote up 5 vote down

Use c==null

The equals method (usually) expects an argument of type customer, and may be calling some methods on the object. If that object is null you will get the NullPointerException.

Also c might be null and c.equals call could be throwing the exception regardless of the object passed

link|flag
vote up 2 vote down

Most likely Object c is null in this case.

You might want to override the default implementation of equals for Customer in case you need to behave it differently.

Also make sure passed object is not null before invoking the functions on it.

link|flag

Your Answer

Get an OpenID
or

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