多线程:java中的实现

实现1:

通过java.util.concurrent.atomic中的原子性数据实现

static class Counter {
        //        通过加锁实现同步
        public static int count = 0;
        public static final Object obj = new Object();
//        通过原子性的整型来实现同步
        public static AtomicInteger count2 = new AtomicInteger();
    }

synchronized通过加锁实现:只是一个关键字,相当于一个指令,可以实现公平锁

class desc {
    public static int count = 0;
    public synchronized void add() {
        for (int i = 0; i < 10000; i++) {
            count++;
        }
    }
    public void dec() {
        synchronized (this) {
            for (int i = 0; i < 10000; i++) {
                count--;
            }
        }
    }
}

通过一个实例对象实现充当锁的实现

原理:

实现2:

ReentrantLock锁:可以实现公平锁和非公平锁

    public static final ReentrantLock reentrantLock = new ReentrantLock();
     ReentrantLock lock = test2.reentrantLock;

        public void run() {
            for (int i = 0; i < 10000; i++) {

//               通过ReentrantLock加锁
                lock.lock();
                try {
                    Counter.count += 1;
                } finally {
//               通过ReentrantLock释放锁
                    lock.unlock();
                }
            }
        }

synchronized和ReentrantLock 区别:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值