共享变量测试 public class VolatileTest { private int b = 5555; public int getB() { return b; } public void setB(int b) { this.b = b; } public static void main(String[] args) throws InterruptedException { VolatileTest volatileTest = new VolatileTes