标签:pre div class col 技术 cal 定义 共享数据 var
public class Test { public static ThreadLocal<String> var = new ThreadLocal<>(); // 这个变量的值在各个线程中是不同的。 public static void main(String[] args) throws IOException { new Thread(()->{ var.set("线程1的值"); }).start(); new Thread(()->{ var.set("线程2的值"); }).start(); System.out.println(); }}
标签:pre div class col 技术 cal 定义 共享数据 var
原文地址:https://www.cnblogs.com/Xmingzi/p/12601038.html