首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

ThreadLocal的兑现原理

2012-08-29 
ThreadLocal的实现原理调用者:/*** Get the map associated with a ThreadLocal. Overridden in* Inherita

ThreadLocal的实现原理

调用者:

    /**     * Get the map associated with a ThreadLocal. Overridden in     * InheritableThreadLocal.     *     * @param  t the current thread     * @return the map     */    ThreadLocalMap getMap(Thread t) {        return t.threadLocals;    }

?

热点排行