最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Java 多線程Synchronized和Lock的區(qū)別

 更新時(shí)間:2021年01月04日 09:19:37   作者:zsq_fengchen  
這篇文章主要介紹了Java 多線程Synchronized和Lock的區(qū)別,幫助大家更好的理解和使用Java,感興趣的朋友可以了解下

引言

  在多線程中,為了使線程安全,我們經(jīng)常會使用synchronized和Lock進(jìn)行代碼同步和加鎖,但是具體兩者有什么區(qū)別,什么場景下適合用什么可能還不大清楚,主要的區(qū)別大致如下:

區(qū)別

    1、synchronized是java關(guān)鍵字,而Lock是java中的一個(gè)接口

    2、synchronized會自動釋放鎖,而Lock必須手動釋放鎖

    3、synchronized是不可中斷的,Lock可以中斷也可以不中斷

    4、通過Lock可以知道線程有沒有拿到鎖,而synchronized不能

    5、synchronized能鎖住方法和代碼塊,而Lock只能鎖住代碼塊

    6、Lock可以使用讀鎖提高多線程讀效率

    7、synchronized是非公平鎖,ReentranLock可以控制是否公平鎖

從Lock接口中我們可以看到主要有5個(gè)方法,這些方法的功能從注釋中可以看出:

lock():獲取鎖,如果鎖被暫用則一直等待
unlock():釋放鎖
tryLock(): 注意返回類型是boolean,如果獲取鎖的時(shí)候鎖被占用就返回false,否則返回true
tryLock(long time, TimeUnit unit):比起tryLock()就是給了一個(gè)時(shí)間期限,保證等待參數(shù)時(shí)間
lockInterruptibly():用該鎖的獲得方式,如果線程在獲取鎖的階段進(jìn)入了等待,那么可以中斷此線程,先去做別的事   通過 以上的解釋,大致可以解釋在上個(gè)部分中“鎖類型(lockInterruptibly())”,“鎖狀態(tài)(tryLock())”等問題,還有就是前面子所獲取的過程我所寫的“大致就是可以嘗試獲得鎖,線程可以不會一直等待”用了“可以”的原因。

lock():

public class LockTest {
  private Lock lock = new ReentrantLock();

  private void method(Thread thread) {
    lock.lock();
    try {
      System.out.println(thread.getName() + " has gotten the lock!");
    } catch (Exception e) {
      e.printStackTrace();
    } finally {
      System.out.println(thread.getName() + " has unlocked the lock!");
      lock.unlock();
    }
  }

  public static void main(String[] args) {
    final LockTest test = new LockTest();

    Thread t1 = new Thread(new Runnable() {
      @Override
      public void run() {
        test.method(Thread.currentThread());
      }
    }, "t1");
    Thread t2 = new Thread(new Runnable() {
      @Override
      public void run() {
        test.method(Thread.currentThread());
      }
    }, "t2");
    t1.start();
    t2.start();
  }

}

運(yùn)行結(jié)果:

t1 has gotten the lock!
t1 has unlocked the lock!
t2 has gotten the lock!
t2 has unlocked the lock!

tryLock():

public class LockTest {
  private Lock lock = new ReentrantLock();

  private void method(Thread thread) {

    if (lock.tryLock()) {
      lock.lock();
      try {
        System.out.println(thread.getName() + " has gotten the lock!");
      } catch (Exception e) {
        e.printStackTrace();
      } finally {
        System.out.println(thread.getName() + " has unlocked the lock!");
        lock.unlock();
      }
    } else {
      System.out.println("I'm "+thread.getName()+". Someone has gotten the lock!");
    }
  }

  public static void main(String[] args) {
    LockTest test = new LockTest();

    Thread t1 = new Thread(() -> test.method(Thread.currentThread()), "t1");
    Thread t2 = new Thread(new Runnable() {
      @Override
      public void run() {
        test.method(Thread.currentThread());
      }
    }, "t2");
    t1.start();
    t2.start();
  }
}

運(yùn)行結(jié)果:

t1 has gotten the lock!
t1 has unlocked the lock!
I'm t2. Someone has gotten the lock!

看到這里相信大家也都會使用如何使用Lock了吧,關(guān)于tryLock(long time, TimeUnit unit)和lockInterruptibly()不再贅述。前者主要存在一個(gè)等待時(shí)間,在測試代碼中寫入一個(gè)等待時(shí)間,后者主要是等待中斷,會拋出一個(gè)中斷異常,常用度不高,喜歡探究可以自己深入研究。

以上就是Java 多線程Synchronized和Lock的區(qū)別的詳細(xì)內(nèi)容,更多關(guān)于Java 多線程Synchronized和Lock的資料請關(guān)注腳本之家其它相關(guān)文章!

相關(guān)文章

最新評論

邯郸市| 泸西县| 大田县| 施秉县| 牙克石市| 专栏| 汉源县| 驻马店市| 蓝山县| 翁牛特旗| 读书| 兴义市| 兰溪市| 南宫市| 汤阴县| 同心县| 怀化市| 阳山县| 澎湖县| 剑川县| 交口县| 钟祥市| 焉耆| 遵化市| 左权县| 昭苏县| 康保县| 汉源县| 万荣县| 合阳县| 沽源县| 黄石市| 夏河县| 合江县| 永州市| 甘泉县| 鄂伦春自治旗| 巢湖市| 敖汉旗| 寻乌县| 宽城|