Tagged Questions
The phantom-reference tag has no wiki summary.
19
votes
3answers
2k views
Understanding Java's Reference classes: SoftReference, WeakReference, and PhantomReference
Can someone explain the difference between the three Reference classes (or post a link to a nice explanation)? SoftReference > WeakReference > PhantomReference, but when would I use each one? Why is ...
6
votes
5answers
641 views
Phantom Referenced Objects
Phantom References serve for post-mortem operations.
The Java specification states that a phantom referenced object will not be deallocated until the phantom-reference itself is cleaned.
My question ...
4
votes
1answer
269 views
Uses of different reference types in Java
I've recently been playing around with soft, weak and phantom reference types in Java and have been wondering if there's any uses out there for them that I haven't come across. I've used them in the ...
3
votes
2answers
968 views
How Phantom reference works?
The API doc says
This reference type differs from the others in that it isn't meant to be used to access the object, but as a signal that the object has already been finalized, and the garbage ...
2
votes
2answers
75 views
why PhantomReference does not work?
Demo code:
import java.lang.ref.PhantomReference;
import java.lang.ref.ReferenceQueue;
public class Main {
public static void main(String[] args) throws InterruptedException {
Object ...
1
vote
4answers
84 views
is there a way to recycle a complex java object once the GC has decided it is unreachable
In C++ I use reference counted objects to impplement a for of "auto" recycling object pool
SmartPointer<ObjType> object = pool.getObject(); // hold reference
// ... do stuff with object over ...
1
vote
2answers
90 views
When a PhantomReference/SoftReference/WeakReference is queued, how do you know what it referred to?
I haven't used PhantomReferences. There seems to be very few good examples of real-world use.
When a phantom shows up in your queue, how do you know which object it is/was? The get() method appears ...
1
vote
2answers
92 views
Mixing different reference types in one collection
SoftReference, WeakReference, PhantomReference may be used to customize the process of garbage collection. All of them extend Reference<T> therefore it is possible to mix them in single ...
1
vote
3answers
249 views
How finalize method works with phantom reference in java
Hi I have one doubt about phantom reference. What I understand the finalize method is called just before when object are going for garbage collection. But some time if object are not eligible for ...
1
vote
3answers
368 views
What is a Ghost Reference?
I was just wondering what a ghost reference was? Is it that you don't have to refer to a object? EDIT: Sorry, I wasn't clear, the langauge is Java, and I read it about linked lists. While reading a ...
0
votes
2answers
262 views
Phantom Contact Account Appearing - Android
I am writing an app that allows the user to select from a list of names and then add one of the names (with phone number, etc) to their contacts. When I retrieve my phone's list of Contact Accounts, I ...
0
votes
4answers
158 views
Member-function pointers and phantom classes
I've been messing about with member-function pointers in relation to a previous question. In the code below I call methods on a class (B) that change a variable (count) in it, but I never make an ...
0
votes
4answers
167 views
$n = 2; 10-$n = 87
well this is what i am doing:
$total = (array_sum($odds))+$evens;
$total = str_split($total);
echo 'total[1]: '.$total[1].'<br />';
echo '10-$total[1]: ' . (10-($total[1]));
and the output ...