Class WeakReference<T>
java.lang.Object
java.lang.ref.Reference<T>
java.lang.ref.WeakReference<T>
- Type Parameters:
T- the type of the referent
Weak reference objects, which do not prevent their referents from beingmade finalizable, finalized, and then reclaimed. Weak references are mostoften used to implement canonicalizing mappings.
Suppose that the garbage collector determines at a certain point in timethat an object isweaklyreachable. At that time it will atomically clear all weak references tothat object and all weak references to any other weakly-reachable objectsfrom which that object is reachable through a chain of strong and softreferences. At the same time it will declare all of the formerlyweakly-reachable objects to be finalizable. At the same time or at somelater time it will enqueue those newly-cleared weak references that areregistered with reference queues.
- Since:
- 1.2
Constructor Summary
ConstructorsConstructorDescriptionWeakReference(T referent) Creates a new weak reference that refers to the given object.WeakReference(T referent,ReferenceQueue<? superT> q) Creates a new weak reference that refers to the given object and isregistered with the given queue.Method Summary
Methods declared in class Reference
clear,clone,enqueue,get,isEnqueued,reachabilityFence,refersTo
Constructor Details
WeakReference
Creates a new weak reference that refers to the given object. The newreference is not registered with any queue.- Parameters:
referent- object the new weak reference will refer to
WeakReference
Creates a new weak reference that refers to the given object and isregistered with the given queue.- Parameters:
referent- object the new weak reference will refer toq- the queue with which the reference is to be registered, ornullif registration is not required