Are we really missing pointers in JAVA or reference can compensate it?
|
|
|
|
|
closed as not a real question by Ed Swangren, Jim Ferrans, dfa, warren, Mark Oct 30 at 9:33 |
|
|
From The Java Language Environment White Paper
|
||
|
|
|
|
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? |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
If you have to ask that, you're not missing anything. |
||||||||
|
