vote up 0 vote down star

Are we really missing pointers in JAVA or reference can compensate it?

flag

79% accept rate

closed as not a real question by Ed Swangren, Jim Ferrans, dfa, warren, Mark Oct 30 at 9:33

5 Answers

vote up 4 vote down check

From The Java Language Environment White Paper

Most studies agree that pointers are one of the primary features that enable programmers to inject bugs into their code. Given that structures are gone, and arrays and strings are objects, the need for pointers to these constructs goes away. Thus, Java has no pointer data types. Any task that would require arrays, structures, and pointers in C can be more easily and reliably performed by declaring objects and arrays of objects. Instead of complex pointer manipulation on array pointers, you access arrays by their arithmetic indices. The Java run-time system checks all array indexing to ensure indices are within the bounds of the array. You no longer have dangling pointers and trashing of memory because of incorrect pointers, because there are no pointers in Java.

link|flag
vote up 0 vote down

I don't really miss pointers much in java. The type of code you'd write in java often wouldn't benefit from their inclusion.

One of the few areas where I miss one of the uses of pointers is function pointers. Having to create a functor every time I want to pass a function around is quite annoying and one of the ways I believe java could still be improved. Other languages have solved this by treating functions as first class objects though, not by implementing "real" pointers.

I think the takeaway here is that pointers are useful in many ways, but that it's usually better to use a wrapper around your pointer, to enforce some kind of safety. Most of the C code I write, I still make mistakes regularly in how I declare and use pointers. Judging by the general type of security vulnerabilities, many experienced programmers do as well.

So do we miss pointers? I don't really think so. Could we benefit from some of the features pointers enable? Yeah, sure.

P.S.: shouldn't this be community wiki?

link|flag
vote up 4 vote down

You need to change some programming techniques (coming from C to Java) to compensate for the lack of pointers (and Java's arguments are references to objects, not to variables as they might be in C++): basically there's no way in Java for a called function to assign a value to a caller's variable passed as an argument (but the called function can modify a mutable object that it's passed, by calling suitable mutator method, of course).

Most programmers appear to adapt rapidly to this kind of change, but some are so "stuck in their ways" that they just can't (or won't) adapt.

The lack of pointer arithmetic may perhaps require similar adaptations, but if you're using pointers correctly in C or C++ (i.e., a pointer always stays within a single array as you do arithmetic on it), array indexing (and indexing on other containers) is usually sufficient.

link|flag
vote up 2 vote down

For all intents, yes, pointers are missing. After 13+ years of Java now, I don't even think twice. There are few areas that mandate pointer and associated arithmetic in code today. In fact I even have to double-think my C code due to my thinking in java.

link|flag
vote up 4 vote down

If you have to ask that, you're not missing anything.

link|flag
Yes thats true, I mean to say is there any thing we can never do in Java which can be done by pointers in C – Sachin Chourasiya Oct 30 at 5:09
Yes, see my answer: essentially, having a called function reassign a variable in the caller (which can be done in C via pointers) can't be done in Java. Not a big loss but you need to adapt some coding styles. – Alex Martelli Oct 30 at 5:10
Yes Alex I agree with you – Sachin Chourasiya Oct 30 at 5:11
Well you are obviously missing something, look at how clunky the jni is and how little support you have for marshalling post-jni. But if you are actually asking your initial question, that means you haven't run in any of these problems, hence you're not missing anything. – Blindy Oct 30 at 6:41

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