Lock

本文探讨了Java内置关键字`synchronized`与第三方库`Lock`的对比,包括它们的结构、获取释放锁机制、锁状态判断、性能优劣,并通过源码分析展示了Lock的使用方法。理解两者有助于优化并发编程效率和避免死锁问题。
摘要由CSDN通过智能技术生成

Lock

synchronized与Lock的区别

类别synchronizedLock
结构Java关键字Java类
释放锁等待已经获取锁的线程同步完代码后释放锁、线程发生异常,jvm让线程释放锁在finally中释放锁,否则会造成线程死锁
获取锁等待其他线程释放锁可以尝试获取锁,不用一直等待
锁状态无法判断可以判断
锁类型可重入、不可中断、非公平可重入、可判断、可公平
性能少量同步大量同步

源码分析

public interface Lock {

    /**
     * Acquires the lock.
     */
    void lock();

    /**
     * Acquires the lock unless the current thread is
     * {@linkplain Thread#interrupt interrupted}.
     */
    void lockInterruptibly() throws InterruptedException;

    /**
     * Acquires the lock only if it is free at the time of invocation.
     */
    boolean tryLock();

    /**
     * Acquires the lock if it is free within the given waiting time and the
     * current thread has not been {@linkplain Thread#interrupt interrupted}.
     */
    boolean tryLock(long time, TimeUnit unit) throws InterruptedException;

    /**
     * Releases the lock.
     */
    void unlock();
	/**
     * Returns a new {@link Condition} instance that is bound to this
     * {@code Lock} instance.
     * @return A new {@link Condition} instance for this {@code Lock} instance
     * @throws UnsupportedOperationException if this {@code Lock}
     *         implementation does not support conditions
     */
    Condition newCondition();
}
  • lock(): 获取锁,如果锁被占用则一直等待
  • unlock():释放锁
  • tryLock(): 获取锁时锁被占用返回false,否则true
  • tryLock(long time, TimeUnit unit):增加一个等待时间
  • lockInterruptibly():线程在获取锁的阶段进入等待,那么中断次线程,先去完成其他任务
  • Condition newCondition():返回绑定到此 Lock 实例的新 Condition
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值