两个线程分别对int i=0进行i++一百次

测试代码
public class Test {
private static int i = 0;

public static void main(String[] args) {
Runnable runnable = () -> {
for (int j = 0; j < 100; j++) { i++; try { Thread.sleep(20); } catch (InterruptedException e) { e.printStackTrace(); } } System.out.p

两个线程分别对int i=0进行i++一百次最先出现在Python成神之路

版权声明:
作者:Zad
链接:https://www.techfm.club/p/19223.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>