位置:首頁 > Java技術 > java.lang > java.lang.ThreadLocal.remove()方法實例

java.lang.ThreadLocal.remove()方法實例

java.lang.ThreadLocal.remove() 方法刪除該線程當前線程局部變量的值。

聲明

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

public void remove()

參數

  • NA

返回值

此方法不返回任何值。

異常

  • NA

例子

下麵的例子顯示java.lang.ThreadLocal.remove()方法的使用。

package com.yiibai;

import java.lang.*;

public class ThreadLocalDemo {

   public static void main(String[] args) {

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

     /* sets the current thread's copy of this thread-local variable
     to the specified value. */

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

讓我們來編譯和運行上麵的程序,這將產生以下結果:

value = 50
value = null