ThreadLocal

为每一个线程提供一个局部变量
实现原理:把当前的一个线程当做Map集合中的一个key,然后把局部变量当成value值。

Map map ;
set (int conut){
    Thread thead = Thread.currentThread();
          map.put(thead ,count);
}

get(){
   int count map.get(Thread.currentThread());
}

你可能感兴趣的:(ThreadLocal)