JDK8 ThreadLocal 源码解析与最佳实践


This class provides thread-local variables. These variables differ from their normal counterparts in that each thread that accesses one (via its get or set method) has its own, independently initialized copy of the variable.ThreadLocal instances are typically private static fields in classes that wish to associate state with a thread (e.g.,a user ID or Transaction ID).

该类提供线程局部变量。这些变量与普通变量的不同之处在于,每个访问一个变量(通过其 get 或 set 方法)的线程都有自己的、独立初始化的变量副本。ThreadLocal 实例通常是类中的私有静态字段,希望将状态与线程关联(例如,用户 ID 或事务 ID)。

每个线程中维护一个 ThreadLocalMap,ThreadLocalMap 虽然名字里有 Map,实际上是 Entry 数组。Entry 数组中 Entry 的 key 是 ThreadLocal,Value 是 保存的属性。下面以一段代码举例:

    public static void main(String[] args) {
           
        ThreadLocal<Integer> tl = new ThreadLocal<>();        
        tl.set(1);    
    }

Pasted image 20221211190622

用法

Example1

import java.util.concurrent.TimeUnit;

public class ThreadLocal2 {
   
    static ThreadLocal<Person> tl = new ThreadLocal<>();
    
    public static void main(String[] args) {
   
        new Thread(()->{
   
            try {
   
                //先睡两秒
                TimeUnit
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值