为了账号安全,请及时绑定邮箱和手机立即绑定

2-4节,为什么我的实际输出始终为20000


https://img1.sycdn.imooc.com//5cb5f1a10001483f10440676.jpg

class Req1 implements Runnable{
   static Req1 req1 = new Req1();
   static int i=0;
   @Override
   public void run() {
      for(int j = 0;j<10000;j++){
         i++;
      }
   }

   public static void main(String[] args) throws InterruptedException {
      Thread thread1 = new Thread(req1);
      Thread thread2 = new Thread(req1);
      thread1.start();
      thread2.start();
      thread1.join();
      thread2.join();
      System.out.println(i);
   }
}


正在回答

1 回答

循环次数太少了,CPU瞬间执行完,两个线程没有交叉执行,或者交叉次数太少且没有出现i++被中断执行的情况

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

2-4节,为什么我的实际输出始终为20000

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信