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.