Weak references in Java

This article discusses the concept of weak references in Java.

Before we start, let us get a few basics out of the way.

There are 4 types of references in Java:

  1. Strong reference
  2. Weak reference
  3. Soft reference
  4. Phantom reference

Here we will discuss about weak reference.

Weak reference is related to garbage collection in Java. Garbage collection is simply the automatic de-allocation of unreferenced object from memory.

A weak reference is a reference made that is not strong enough to make the object to remain in memory. So, weak references can let the garbage collector decide an object’s reachability and whether the object in question should be kept in memory or not.

Weak references need to be declared explicitly as by default Java marks a reference as a strong reference.




What is a weak reachability?

It means that an object has neither strong nor soft references pointing to it and can only be reached by traversing through a weak reference.

So if the object is weakly referenced then the garbage collector removes it from memory which clears up more space and make for better memory management.

After the garbage collector has removed the weak reference, the reference is placed in a reference queue and the formerly weak-reachable objects are finalized.

 

Where are weak references used?

  • Weak references are used mostly in the implementation of canonicalized mappings. Canonicalized mapping is when the maps hold only one instance of a particular value.

 

  • Weak references are also widely used in WeakHashMap class. This is the implementation of the Map interface where every key value is stored as a weak reference. Key-value pairs extend WeakReference class. So removal of this key by the garbage collector results in the entity being removed as well.

Code example:

Private static class TryingOut<K,V> extends WeakReference <Object> implements Map.Entry <K,V>

  • Lapsed Listener problem also uses weak references. Memory leak problems are handled by weak references in this case.

 

Implementing weak references:

java.lang.ref.WeakReference class is used while dealing and creating weak references.

A real live practical scenario where weak references can be used is when establishing a database connection which might be cleaned up by Garbage Collector when the application using the database gets closed.

A coding example of weak references in Java is shown below:

// Illustrating Weak references in Java 
import java.lang.ref.WeakReference; 
class WeakestRef 
{ 
    //coding starts from here
    public void something() 
    { 
        System.out.println("This is printed out on the screen"); 
    } 
} 
  
public class TryingOutWeak
{ 
    public static void main(String[] args) 
    { 
        // Strong Reference 
        WeakestRef obj1 = new WeakestRef ();    
        obj1.something(); 
          
        // Creating Weak Reference to WeakestRef -type object to which 'obj1' is also pointing. 
        WeakReference< WeakestRef > weakref = new WeakReference< WeakestRef >(obj1); 
          
        //Now, WeakestRef -type object to which 'obj1' was pointing earlier is not available for garbage   //collection. But will be only be garbage collected when JVM needs memory. 
        Obj1 = null;  
          
        // Note: You can also retrieve back the object which has been weakly referenced. It succesfully     //calls the method. 
        Obj1 = weakref.get();  
          
        Obj1.something(); 
    } 
}

 

Output of the code:

This is printed out on the screen

This is printed out on the screen

1 2 votes
Article Rating
guest
0 Comments
Inline Feedbacks
View all comments