/**
* @create on 17/3/27
* @description
*/
public class Main {
static volatile int i = 0;
public static class PlusTask implements Runnable{
@Override
public void run(){
for(int k=0; k<10000; k++)
i++;
}
}
public static void main(String[] args) throws InterruptedException{
Thread[] threads = new Thread[10];
for(int i=0;i<10;i++){
threads[i] = new Thread(new PlusTask());
threads[i].start();
}
for(int i=0;i<10;i++){
threads[i].join();
}
System.out.println(i);
}
}
请教各位大牛 为什么这里的输出总是小于10000? 已经调用了thread.join
天蓬老师2017-04-18 10:54:11
이것이 필요할 수 있습니다:
으아아아또는 AtomicInteger
Volatile은 멀티 스레드 캐시 일관성에서만 역할을 하며 한 번에 하나의 스레드만 변수를 쓴다는 것을 보장하지 않습니다.
怪我咯2017-04-18 10:54:11
멀티 스레드 작업의 공유 변수 문제는 복합 작업의 원자성을 보장할 수 없습니다. 즉, 후자의 스레드가 이전 스레드의 수정된 값 i를 항상 볼 수 없다는 의미입니다. 해결 방법은 잠금 또는 원자 작업입니다.