ι 版權聲明:本文為博主原創(chuàng)文章,未經博主允許不得轉載。

 

先看Android源碼(API24)中對ThreadLocal的定義:

public class ThreadLocal<T>

即ThreadLoca是一個泛型類,再看對該類的注釋:

電腦培訓,計算機培訓,平面設計培訓,網頁設計培訓,美工培訓,Web培訓,Web前端開發(fā)培訓

/**
 * This class provides thread-local variables.  These variables differ from
 * their normal counterparts in that each thread that accesses one (via its
 * <tt>get</tt> or <tt>set</tt> method) has its own, independently initialized
 * copy of the variable.  <tt>ThreadLocal</tt> instances are typically private
 * static 
        
		

網友評論