threadLocal保证dateformat的线程安全

dateformat是非线程安全的,我们使用threadLocal来保证dateformat的线程安全。
代码如下

1、设置局部变量
private static final ThreadLocal<DateFormat> df = new ThreadLocal<DateFormat>() { @Override
    protected DateFormat initialValue() {
        return new SimpleDateFormat("yyyy-MM-dd");
    } };
2、我们在线程中获取 simpledateFormat
Thread thread1 = new Thread(new Runnable() {
            @Override
            public void run() {
                DateFormat dateFormat = df.get();
                dateFormatList.add(dateFormat);
                System.out.println("当前线程" + Thread.currentThread() + "的hashcode为:" + dateFormat.hashCode());
            }
        }, "线程1");
3、查看get()方法 :每一次threadLocal都会判断当前线程是否有ThreadLocalMap,如果没有,那么调用setInitialValue()方法。
    public T get() {
        Thread t = Thread.currentThread();
        ThreadLocalMap map = getMap(t);
        if (map != null) {
            ThreadLocalMap.Entry e = map.getEntry(this);
            if (e != null) {
                @SuppressWarnings("unchecked")
                T result = (T)e.value;
                return result;
            }
        }
        return setInitialValue();
    }
4、第一步就是调用我重写的initialValue()方法,每一次都会new 一个simpledateFormat对象
    private T setInitialValue() {
        T value = initialValue();    -->这里是我重写的方法,每一次都会先见一个simpledateformat对象
        Thread t = Thread.currentThread();
        ThreadLocalMap map = getMap(t);
        if (map != null) {
            map.set(this, value);
        } else {
            createMap(t, value);
        }
        if (this instanceof TerminatingThreadLocal) {
            TerminatingThreadLocal.register((TerminatingThreadLocal<?>) this);
        }
        return value;
    }

所以threadLocal就是为每一个线程创建一个simpleDateFormat对象来保证多线程情况下的线程安全的。

但是在我打印simpleDateFormat的时候发现一个问题:发现两个线程中的simpleDateForma对象相同。如下图
在这里插入图片描述
然后我查看simpleDateFormat的equals()方法发现问题:如下图,equals()方法为true,== 则为false,那么分析可知两个对象不是同一个对象
在这里插入图片描述
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值