作者:sdfqwerwfds | 来源:互联网 | 2023-10-14 18:15
我对threadLocal的initialValue和withInital方法有点困惑。
考虑一种情况,我在父线程中有数据,并且我正在使用InheritableThreadLocal
.
public class Parent extends Thread {
public static ThreadLocal data = new InheritableThreadLocal() {
@Override
protected String initialValue() {
return "temp";
}
};
public static void main(String[] args) {
new Parent().start();
}
public void run() {
data.set("parent data");
System.out.println("Parent Thread Value :" + data.get());
new ChildThread().start();
}
class ChildThread extends Thread {
public void run() {
System.out.println("Child Thread Value :" + Parent.data.get());
}
}
}
输出:
Parent Thread Value : parent data
Child Thread Value : parent data
我在父线程中创建线程,并调用子线程。子线程从父线程继承数据。
现在,如果我data
像这样初始化变量(在第 2 行):
public static ThreadLocal data =InheritableThreadLocal.withInitial(() -> "temp");
我得到以下输出:
Parent Thread Value :parent data
Child Thread Value :temp
我不确定为什么会发生。我阅读了 oracle 的文档,但没有得到有用的信息。
https://docs.oracle.com/javase/8/docs/api/java/lang/ThreadLocal.html#withInitial-java.util.function.Supplier-
https://docs.oracle.com/javase/8/ docs/api/java/lang/ThreadLocal.html#initialValue--
我想知道如何使用withInitial
而不是使用来实现相同的输出initialValue
?
回答
withInitial
不会创建InheritableThreadLocal
. 它只创建一个常规ThreadLocal
,这就是您temp
在输出中看到的原因。
withInitial
是一个静态方法,所以它不能被覆盖InheritableThreadLocal
来做一些不同的事情,比如返回一个InheritableThreadLocal
.
所以你不能做同样的事情,但是使用withInitial
, 因为它不返回你需要的对象类型。