码迷,mamicode.com
首页 > 其他好文 > 详细

atomic 原子操作的类

时间:2019-09-01 16:57:58      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:imp   incr   join()   ted   row   操作   ola   led   exception   


import java.util.concurrent.atomic.AtomicInteger;

/**
 * 原子操作的类 atomic
 */
public class VolatileDemo {
    static AtomicInteger i = new AtomicInteger(0);
    public static class PlusTask implements Runnable {
        @Override
        public void run() {
//            synchronized (VolatileDemo.class){
            for (int j = 0; j < 10000; j++) {
                i.incrementAndGet(); //自增
            }
//            }
        }
    }

    public static void main(String[] args) throws InterruptedException{
        Thread[] threads = new Thread[10];
        for (int a = 0; a < 10; a++) {
            threads[a] = new Thread(new PlusTask());
            threads[a].start();
        }
        for (int a = 0; a < 10; a++) {
            threads[a].join();
        }
        System.out.println(i.get());//i的值小于10000
    }
}

atomic 原子操作的类

标签:imp   incr   join()   ted   row   操作   ola   led   exception   

原文地址:https://www.cnblogs.com/fly-book/p/11442613.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!