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,那么分析可知两个对象不是同一个对象