java面试题之多线程数据读取

请问以下程序运行之后a的值是多少?

import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

class Test {

    static int a = 0;

    static Runnable r1 = new Runnable() {
        @Override
        public void run() {
            a++;
            try {
                Thread.sleep(100);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            a++;
        }
    };

    public static void main(String[] args) throws InterruptedException {
        ExecutorService pools = Executors.newFixedThreadPool(100);
        for (int i = 0; i < 100; i++) {
            pools.execute(r1);
        }
        Thread.sleep(5 * 1000);
        System.out.println("a = " + a);
        pools.shutdown();
    }
}

其实,这个程序每次运行的结果都不一定,那如何才能让它打印出200呢?
我们先给a 加个 volatile,继续运行,发现每次结果还是不一样. 原因在于 a++ 不是原子操作,也没有给a加同步 ,最终解决方案为使用支持原子操作的 AtomicInteger。

最终程序为:

import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.atomic.AtomicInteger;

class Test {

    static AtomicInteger a = new AtomicInteger(0);

    static Runnable r1 = new Runnable() {
        @Override
        public void run() {
            a.incrementAndGet();
            try {
                Thread.sleep(100);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            a.incrementAndGet();
        }
    };

    public static void main(String[] args) throws InterruptedException {
        ExecutorService pools = Executors.newFixedThreadPool(100);
        for (int i = 0; i < 100; i++) {
            pools.execute(r1);
        }
        Thread.sleep(5 * 1000);
        System.out.println("a = " + a.get());
        pools.shutdown();
    }
}

每次都打印出200.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值