Was this an oversight? Or is it to do with the JVM?
|
|
|||
|
|
|
Java does indeed have pointers--pointers on which you cannot perform pointer arithmetic. From the venerable JLS:
And later:
(emphasis theirs) So, to interpret, if you write:
then Thus if you set Don't worry: this topic has been heartily debated before. |
||
|
|
|
|
I guess it has to do with the fact that the JVM is coded in C++. Apart from that, pointers and references are nearly similar. You could say that the reference mechanism in Java is implemented using C++ pointers and the name 'NullPointerException' allows that implementation detail to shine through. |
||
|
|
|
|
This is due to the fact that Java was designed with C programmers in mind. In C terminoligy the word 'pointer' is used instead of 'reference' |
||
|
|
