Java Data Type Tutorial - Java ThreadLocal.remove()








Syntax

ThreadLocal.remove() has the following syntax.

public void remove()

Example

In the following code shows how to use ThreadLocal.remove() method.

// ww  w  . jav  a2  s .co  m

public class Main {

   public static void main(String[] args) {

     ThreadLocal<Integer>  tlocal = new ThreadLocal<Integer> ();  

     tlocal.set(50);
     System.out.println("value = " + tlocal.get());
 
     tlocal.remove();
     System.out.println("value = " + tlocal.get());
   }
}

The code above generates the following result.