How can i create a dangling pointer using Java?

link|improve this question
5  
With JNI, of course. – Ignacio Vazquez-Abrams Feb 12 '11 at 6:20
1  
@Ignacio, that's awesome, you should have posted it as an answer. – Sergey Tachenov Feb 12 '11 at 6:35
I could to without JNI, and just use ProcessBuilder, but as with JNI, you're not really using Java :-) – aioobe Feb 12 '11 at 6:41
feedback

4 Answers

According to Wikipedias definition below, no.

Dangling pointers and wild pointers in computer programming are pointers that do not point to a valid object of the appropriate type.

Dangling pointers arise when an object is deleted or deallocated, without modifying the value of the pointer, so that the pointer still points to the memory location of the deallocated memory

There is no way to delete (or "garbage collect" if you so wish) an object which some reference still points to.

Further down in the above Wikipedia article you can indeed read:

In languages like Java, dangling pointers cannot occur because there is no mechanism to explicitly deallocate memory. Rather, the garbage collector may deallocate memory, but only when the object is no longer reachable from any references.

The only way to make a reference not point to an ("valid") object, is to assign null to it.

link|improve this answer
I'd call an uninitialized pointer dangling too, but then again, you can't create uninitialized pointers in Java either. – Sergey Tachenov Feb 12 '11 at 6:35
@Sergey: local variables can be uninitialized, but then they are not useable. – Paŭlo Ebermann Feb 12 '11 at 13:42
1  
@Paŭlo, right. I doubt they could be called dangling pointers, though. – Sergey Tachenov Feb 12 '11 at 14:13
feedback

You can not create dangling pointer in java, because there is no mechanism to explicitly deallocate memory

link|improve this answer
3  
Did you copy from wikipedia? ;-) – aioobe Feb 12 '11 at 6:27
feedback
String foo = null;

then if you try to say foo.substring(0), you'll get a NullPointerException.

Is that what you mean?

link|improve this answer
feedback

Not available on all JVMs, but Sun's JVM does give you sun.misc.unsafe#allocateMemory(long bytes). That call returns a pointer.

sun.misc.unsafe#freeMemory(long address) frees that memory. Your initial pointer is now "dangling".

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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