首页 > 为什么输出的会出错对不上
头像
牛客655423177号
发布于 2021-08-19 20:37
+ 关注

为什么输出的会出错对不上

public class TestA { static int a=0;  public static void main(String[] args) {
       
        ExecutorService executorService = Executors.newFixedThreadPool(10);  for (int i = 0; i < 20; i++) {
            executorService.execute(()->{ synchronized (""){ for (int j = 0; j < 10000; j++) { a++;  }
                }
            });   } try {
            Thread.sleep(2000);  System.out.println(a);  } catch (InterruptedException e) {
            e.printStackTrace();  }
    }
}

全部评论

(0) 回帖
加载中...
话题 回帖

相关热帖

近期热帖

近期精华帖

热门推荐