All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.lang.ref.package.html Maven / Gradle / Ivy

Go to download

A library jar that provides APIs for Applications written for the Google Android Platform.

There is a newer version: 15-robolectric-12650502
Show newest version

  
    

Provides the system's {@link java.lang.ref.ReferenceQueue} implementation as well as different forms of reference objects which impose special behavior on the garbage collector. The behavior depends on the type of {@link java.lang.ref.Reference} being used. Three different type of references exist, each being weaker than the preceding one: {@link java.lang.ref.SoftReference}, {@link java.lang.ref.WeakReference}, and {@link java.lang.ref.PhantomReference}. "Weakness" here means that less restrictions are being imposed on the garbage collector as to when it is allowed to actually garbage-collect the referenced object.

In order to use reference objects properly it is important to understand the different types of reachability that trigger their clearing and enqueueing. The following table lists these, from strongest to weakest. For each row, an object is said to have the reachability on the left side if (and only if) it fulfills all of the requirements on the right side. In all rows, consider the root set to be a set of references that are "resistant" to garbage collection (that is, running threads, method parameters, local variables, static fields and the like).

Strongly reachable
  • There exists at least one path from the root set to the object that does not traverse any instance of a {@link java.lang.ref.Reference} subclass.
Softly reachable
  • The object is not strongly reachable.
  • There exists at least one path from the root set to the object that does traverse a {@link java.lang.ref.SoftReference} instance, but no {@link java.lang.ref.WeakReference} or {@link java.lang.ref.PhantomReference} instances.
Weakly reachable
  • The object is neither strongly nor softly reachable.
  • There exists at least one path from the root set to the object that does traverse a {@link java.lang.ref.WeakReference} instance, but no {@link java.lang.ref.PhantomReference} instances.
Phantom-reachable
  • The object is neither strongly, softly nor weakly reachable.
  • The object is referenced by a {@link java.lang.ref.PhantomReference} instance.
  • The object has already been finalized.





© 2015 - 2025 Weber Informatics LLC | Privacy Policy