码迷,mamicode.com
首页 > 编程语言 > 详细

基于CAS线程安全的计算方法 java并发编程的艺术上的一个案例

时间:2014-08-06 19:35:52      阅读:260      评论:0      收藏:0      [点我收藏+]

标签:des   java   io   for   2014   art   ar   new   

package thread;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.atomic.AtomicInteger;
/**
 * @author  changxiangxiang
 * @date 2014年8月6日 下午3:25:12
 * @description
 * @since  sprint2
 */
public class Counter {
    private AtomicInteger atomicI = new AtomicInteger();
    public int            i       = 0;
    public static void main(String[] args) {
        final Counter counter = new Counter();
        List<Thread> ts = new ArrayList<Thread>();
        long start = System.currentTimeMillis();
        for (int j = 0; j < 100; j++) {
            Thread t = new Thread(new Runnable() {
                @Override
                public void run() {
                    for (int i = 0; i < 10000; i++) {
                        counter.count();
                        counter.sateCount();
                    }
                }
            });
            ts.add(t);
        }
        for (Thread tr : ts) {
            tr.start();
        }
        // 等待所有线程执行完成
        for (Thread tr : ts) {
            try {
                tr.join();
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
        System.out.println(counter.i);
        System.out.println(counter.atomicI.get());
        System.out.println(System.currentTimeMillis() - start);
    }
    private void sateCount() {
        // atomicI.getAndIncrement();
        // 自旋CAS实现的基本思路就是循环进行CAS操作直到成功为止。
        for (;;) {
            int i = atomicI.get();
            boolean suc = atomicI.compareAndSet(i, ++i);
            if (suc) {
                break;
            }
        }
    }
    private void count() {
        i++;
    }
}

基于CAS线程安全的计算方法 java并发编程的艺术上的一个案例,布布扣,bubuko.com

基于CAS线程安全的计算方法 java并发编程的艺术上的一个案例

标签:des   java   io   for   2014   art   ar   new   

原文地址:http://my.oschina.net/chaxiang/blog/298586

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