阻塞队列详细解读

数组

链表

public class Test01 {
    public static void main(String[] args) {
        new ThreadPoolExecutor(1, 2, 3, TimeUnit.SECONDS, new ArrayBlockingQueue<>(10));
        Executors.newFixedThreadPool(3);
    }


    public synchronized void test() throws InterruptedException {
        this.wait();
        //不能唤醒指定线程
        this.notify();

    }

    public void test1() throws InterruptedException {
        ReentrantLock reentrantLock = new ReentrantLock();
        Condition condition = reentrantLock.newCondition();
        reentrantLock.lock();
        condition.wait();
        condition.signal();//唤醒对象
        reentrantLock.unlock();
    }


    public synchronized void test2() throws InterruptedException {
        this.wait();
        //不能唤醒指定线程
        this.notify();
//        跨方法唤醒
        condition.signal();

    }

    ReentrantLock reentrantLock = new ReentrantLock();
    Condition condition = reentrantLock.newCondition();

    public void test3() throws InterruptedException {

        reentrantLock.lock();  //线程状态的切换.比较消耗性能
        condition.wait();
        reentrantLock.unlock();
    }

    public void test5() throws InterruptedException {
        for (; ; ) {  //自旋消耗性能  cpu
//            compare and set 使用操作系统得指令保证原子性
//            0--->1  i compare 0 1
            if (Unsafe.getUnsafe().compareAndSwapInt()) {
//                只有一个线程能成功
//                执行操作
                LockSupport.park();//线程状态切换 相当于加锁了
                LockSupport.unpark(new Thread());
                return;
            }
        }

    }


}

线程状态切换,比较消耗性能,有限自旋次数,

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值