Possible Duplicate:
Java: Why aren't NullPointerExceptions called NullReferenceExceptions ?

Was encouraged by response for my previous question, hence this question. Hope it's cool.

We know that we do not have pointer concept in Java except that reference is passed in some cases. In-spite we have 'pointer' in NullPointerException (which btw is my fovorite !!) Yes this has more to do with history than for our grey cells, but I found it worth asking in this active forum.
Does anyone know it's history ?Was the word 'pointer' used in a generic way or it has special meaning ttached to it.

Thanks in advance for your patience to read the question.

PS : This is in line with NullRefException in .Net

link|improve this question

25% accept rate
There are copies of references passed to functions. Always - not in some cases. – user unknown Jun 3 '11 at 12:53
@BoltClock I dinn get this link earlier....indeed my question is a duplicate....how do I remove ? clicked on delete... – RamMohan Jun 3 '11 at 13:00
You don't need to delete it. It's perfectly alright to keep it. – BoltClock Jun 3 '11 at 13:00
feedback

closed as exact duplicate by BoltClock, aioobe, Jason S, Vineet Reynolds, Sean Patrick Floyd Jun 3 '11 at 12:54

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

4 Answers

It's not true that "we do not have pointer concept in Java". Java references are pointers, you just can't do arithmetic on them. I suppose that to C programmers, pointers and pointer arithmetic are so strongly linked that they cannot conceive using the name "pointer" for something you cannot to arithmetic on, but calling a method on an object involves dereferencing a pointer, exactly as in C++, and when that pointer is null, you get an error.

link|improve this answer
feedback

see NullPointerException

link|improve this answer
feedback

Even if you don't use the pointers manually, they are still used to manage memory.

See the javadoc on the NullPointerException:

Thrown when an application attempts to use null in a case where an object is required. These include:

  • Calling the instance method of a null object.

  • Accessing or modifying the field of a null object.

  • Taking the length of null as if it were an array.

  • Accessing or modifying the slots of null as if it were an array. Throwing null as if it were a Throwable value.

Applications should throw instances of this class to indicate other illegal uses of the null object.

So a NullPointerException is when the program expects to find an object in memory, but the reference points to nothing/null.

link|improve this answer
feedback

My wildest guess would be "to not bother C++ developers". The goal of Java (in the early days) was to have a lot of developers.

And in C++ a reference can't be null, so a NullReferenceException would have been quite strange for them.

link|improve this answer
feedback

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