Uses of Class
java.lang.ThreadLocal
-
Packages that use ThreadLocal 软件包 描述 java.lang 提供对Java编程语言设计至关重要的类。 -
-
Uses of ThreadLocal in java.lang
Subclasses of ThreadLocal in java.lang Modifier and Type Class 描述 class
InheritableThreadLocal<T>
该类扩展了ThreadLocal
以提供从父线程到子线程的值的继承:当创建子线程时,子接收到父值具有值的所有可继承线程局部变量的初始值。Methods in java.lang that return ThreadLocal Modifier and Type 方法 描述 static <S> ThreadLocal<S>
ThreadLocal. withInitial(Supplier<? extends S> supplier)
创建线程局部变量。
-