private static ThreadLocal<String> businessType = new ThreadLocal<>();
时间: 2023-11-05 13:55:30 浏览: 163
ThreadLocal相关
private static ThreadLocal<String> businessType = new ThreadLocal<>();
ThreadLocal是Java中的一种线程局部变量,它提供了一种在多线程环境下保持变量的副本,每个线程都拥有自己的副本,互不干扰。在上述代码中,businessType是一个ThreadLocal对象,它的泛型类型是String,表示每个线程都有自己的String类型的变量businessType。
阅读全文