Sunday, October 14, 2007

Java Pointers

We know object references are implemented via pointers,then why we don't have access of pointers in java...


There are many reasons, but the two big ones are probably....

Security:
You can't implementment the security model needed for applets. Or even needed in a shared model used in application servers, if an application can do pointer arithmetic to access portions of memory that they are not allowed to touch.

Garbage Collection.
It would be impossible to detect whether something has been dereferenced, if the program can convert a pointer to an integer, so that it can calculate the reference later.


Since References are pointers, the JVM uses pointers and developers have access to them and can do pointer arithmatic on them.

No comments: