2、深入解析threadlocal類
threadlocal提供了執行緒區域性變數,可以視為內部通過乙個內部類threadlocalmap訪問資料,訪問資料只在同一執行緒有效也就是說:不同執行緒只能從中get,set,remove自己的變數,而不會影響其他執行緒的變數。
在上面談到了對threadlocal的一些理解,那我們下面來看一下具體threadlocal是如何實現的。
先了解一下threadlocal類提供的幾個方法:
public t get()
public
void
set(t value)
public
void
remove()
protected t initialvalue()
get()方法是用來獲取threadlocal在當前執行緒中儲存的變數副本,set()用來設定當前執行緒中變數的副本,remove()用來移除當前執行緒中變數的副本,initialvalue()是乙個protected方法,一般是用來在使用時進行重寫的,它是乙個延遲載入方法,下面會詳細說明。
接下來我們來看一下threadlocal類是如何為每個執行緒建立乙個變數的副本的。
先看下get方法的實現:
public t get()
return
setinitialvalue()
;}
第一句是取得當前執行緒,然後通過getmap(t)方法獲取到乙個map,map的型別為threadlocalmap。然後接著下面獲取到鍵值對,注意這裡獲取鍵值對傳進去的是 this,而不是當前執行緒t。
如果獲取成功,則返回value值。
如果map為空,則呼叫setinitialvalue方法返回value。
我們上面的每一句來仔細分析:
首先看一下getmap方法中做了什麼:
/**
* get the map associated with a threadlocal. overridden in
* inheritablethreadlocal.
** @param t the current thread
* @return the map
*/threadlocalmap getmap
(thread t)
可能大家沒有想到的是,在getmap中,是返回當前執行緒t中的乙個成員變數threadlocals。
那麼我們繼續取thread類中取看一下成員變數threadlocals是什麼:
/* threadlocal values pertaining to this thread. this map is maintained
* by the threadlocal class. */
threadlocal.threadlocalmap threadlocals = null;
實際上就是乙個threadlocalmap,這個型別是threadlocal類的乙個內部類,我們繼續取看threadlocalmap的實現:
static
class
threadlocalmap}...}
可以看到threadlocalmap的entry繼承了weakreference,並且使用threadlocal作為鍵值。
然後再繼續看setinitialvalue方法的具體實現:
/**
* variant of set() to establish initialvalue. used instead
* of set() in case user has overridden the set() method.
** @return the initial value
*/private t setinitialvalue()
很容易了解,就是如果map不為空,就設定鍵值對,為空,則建立map,看一下createmap的實現:
/**
* create the map associated with a threadlocal. overridden in
* inheritablethreadlocal.
** @param t the current thread
* @param firstvalue value for the initial entry of the map
* @param map the map to store.
*/void
createmap
(thread t, t firstvalue)
至此,大家應該能明白threadlocal是如何為每個執行緒建立變數的副本的:
首先,在每個執行緒thread內部有乙個threadlocal.threadlocalmap型別的成員變數threadlocals,這個threadlocals就是用來儲存實際的變數副本的,鍵值為當前threadlocal變數,value為變數副本(即t型別的變數)。
初始時,在thread裡面,threadlocals為空,當通過threadlocal變數呼叫get()方法或者set()方法,就會對thread類中的threadlocals進行初始化,並且以當前threadlocal變數為鍵值,以threadlocal要儲存的副本變數為value,存到threadlocals。然後在當前執行緒裡面,如果要使用副本變數,就可以通過get方法在threadlocals裡面查詢。
下面通過乙個例子來證明通過threadlocal能達到在每個執行緒中建立變數副本的效果:
package com.gyx.threadlocal;
public
class
threadlocaltest
public long getlong()
public string getstring()
public
static
void
main
(string[
] args)
throws interruptedexception ;}
; thread1.
start();}}
ThreadLocal深入理解
threadlocal從字面上理解,很容易會把threadlocal誤解為乙個執行緒的本地變數。threadlocal並不是代表當前執行緒,threadlocal其實是採用雜湊表的方式來為每個執行緒都提供乙個變數的副本。從而保證各個執行緒間資料安全。每個執行緒的資料不會被另外執行緒訪問和破壞。每個執...
ThreadLocal深入理解
通過每個執行緒維護一張threadlocalmap雜湊對映表,key為threadlocal的弱引用,value是object本身。也就是說,threadlocal本身不存任何實際值,而是通過本身作為key,從threadlocalmap中獲取具體的值。實際上,threadlocalmap儲存的是e...
深入理解ThreadLocal
threadlocal例項為每乙個訪問它的執行緒 即當前執行緒 都關聯了乙個該執行緒的執行緒特有物件 執行緒特有物件 tso,thread specific object 各個執行緒建立各自的例項,乙個例項只能被乙個執行緒訪問的物件就被稱為執行緒特有物件,相對應的執行緒就被稱為該執行緒特有物件的持有...