Java ThreadLocal remove() 方法



描述

Java ThreadLocal remove() 方法移除当前线程为此线程局部变量的值。

声明

以下是 java.lang.ThreadLocal.remove() 方法的声明

public void remove()

参数

返回值

此方法不返回值。

异常

示例:从 ThreadLocal 对象中移除 Integer 值

以下示例演示了 Java ThreadLocal remove() 方法的用法。在此程序中,我们初始化了一个 ThreadLocal 对象。使用 set() 方法,将值分配给 ThreadLocal 对象,并使用 get() 方法检索并打印值。使用 remove() 方法,移除当前值,并使用 get() 检索值并打印结果。

package com.tutorialspoint;

public class ThreadLocalDemo {

   public static void main(String[] args) {

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

      tlocal.set(100);
      // returns the current thread's value
      System.out.println("value = " + tlocal.get());
      // remove the current value
      tlocal.remove();
      // returns the current thread's value of 
      System.out.println("value = " + tlocal.get());
   }
} 

输出

让我们编译并运行上述程序,这将产生以下结果:

value = 100
value = null

示例:从 ThreadLocal 对象中移除 Double 值

以下示例演示了 Java ThreadLocal remove() 方法的用法。在此程序中,我们初始化了一个 ThreadLocal 对象。使用 set() 方法,将值分配给 ThreadLocal 对象,并使用 get() 方法检索并打印值。使用 remove() 方法,移除当前值,并使用 get() 检索值并打印结果。

package com.tutorialspoint;

public class ThreadLocalDemo {

   public static void main(String[] args) {

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

      tlocal.set(100.0);
      // returns the current thread's value
      System.out.println("value = " + tlocal.get());
      // remove the current value
      tlocal.remove();
      // returns the current thread's value of 
      System.out.println("value = " + tlocal.get());
   }
} 

输出

让我们编译并运行上述程序,这将产生以下结果:

value = 100.0
value = null

示例:从 ThreadLocal 对象中移除 String 值

以下示例演示了 Java ThreadLocal remove() 方法的用法。在此程序中,我们初始化了一个 ThreadLocal 对象。使用 set() 方法,将值分配给 ThreadLocal 对象,并使用 get() 方法检索并打印值。使用 remove() 方法,移除当前值,并使用 get() 检索值并打印结果。

package com.tutorialspoint;

public class ThreadLocalDemo {

   public static void main(String[] args) {

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

      tlocal.set("100");
      // returns the current thread's value
      System.out.println("value = " + tlocal.get());
      // remove the current value
      tlocal.remove();
      // returns the current thread's value of 
      System.out.println("value = " + tlocal.get());
   }
} 

输出

让我们编译并运行上述程序,这将产生以下结果:

value = 100
value = null
java_lang_threadlocal.htm
广告