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.


/*from   w w w  .  j av  a  2s  .  c  o  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.





















Home »
  Java Tutorial »
    java.lang »




Boolean
Byte
Character
Class
Double
Enum
Float
Integer
Long
Math
Number
Object
Package
Process
ProcessBuilder
Runnable
Runtime
SecurityManager
Short
StackTraceElement
StrictMath
String
StringBuffer
StringBuilder
System
Thread
ThreadGroup
ThreadLocal
Throwable