Java多線程并發(fā)編程 Synchronized關(guān)鍵字
synchronized 關(guān)鍵字解析
同步鎖依賴于對象,每個對象都有一個同步鎖。
現(xiàn)有一成員變量 Test,當(dāng)線程 A 調(diào)用 Test 的 synchronized 方法,線程 A 獲得 Test 的同步鎖,同時,線程 B 也去調(diào)用 Test 的 synchronized 方法,此時線程 B 無法獲得 Test 的同步鎖,必須等待線程 A 釋放 Test 的同步鎖才能獲得從而執(zhí)行對應(yīng)方法的代碼。
綜上,正確使用 synchronized 關(guān)鍵字可確保原子性。
synchronized 關(guān)鍵字的特性應(yīng)用
特性 1:
當(dāng)線程 A 調(diào)用某對象的synchronized 方法 或者 synchronized 代碼塊時,若同步鎖未釋放,其他線程調(diào)用同一對象的synchronized 方法 或者 synchronized 代碼塊時將被阻塞,直至線程 A 釋放該對象的同步鎖。
DEMO1,synchronized 方法:
public class Test { private static class Counter { public synchronized void count() { for (int i = 0; i < 6; i++) { System.out.println(Thread.currentThread().getName() + ", i = " + i); } } } private static class MyThread extends Thread { private Counter mCounter; public MyThread(Counter counter) { mCounter = counter; } @Override public void run() { super.run(); mCounter.count(); } } public static void main(String[] var0) { Counter counter = new Counter(); // 注:myThread1 和 myThread2 是調(diào)用同一個對象 counter MyThread myThread1 = new MyThread(counter); MyThread myThread2 = new MyThread(counter); myThread1.start(); myThread2.start(); } }
DEMO1 輸出:
Thread-0, i = 0 Thread-0, i = 1 Thread-0, i = 2 Thread-0, i = 3 Thread-0, i = 4 Thread-0, i = 5 Thread-1, i = 0 Thread-1, i = 1 Thread-1, i = 2 Thread-1, i = 3 Thread-1, i = 4 Thread-1, i = 5
DEMO2,synchronized 代碼塊:
public class Test { private static class Counter { public void count() { synchronized (this) { for (int i = 0; i < 6; i++) { System.out.println(Thread.currentThread().getName() + ", i = " + i); } } } } private static class MyThread extends Thread { private Counter mCounter; public MyThread(Counter counter) { mCounter = counter; } @Override public void run() { super.run(); mCounter.count(); } } public static void main(String[] var0) { Counter counter = new Counter(); MyThread myThread1 = new MyThread(counter); MyThread myThread2 = new MyThread(counter); myThread1.start(); myThread2.start(); } }
DEMO2 輸出:
Thread-0, i = 0 Thread-0, i = 1 Thread-0, i = 2 Thread-0, i = 3 Thread-0, i = 4 Thread-0, i = 5 Thread-1, i = 0 Thread-1, i = 1 Thread-1, i = 2 Thread-1, i = 3 Thread-1, i = 4 Thread-1, i = 5
可見,當(dāng)同步鎖未釋放時,其他線程將被阻塞,直至獲得同步鎖。
而且 DEMO1 和 DEMO2 的輸出結(jié)果是一樣的,synchronized 方法 和 synchronized 代碼塊的不同之處在于 synchronized 方法 作用域較大,作用于整個方法,而 synchronized 代碼塊 可控制具體的作用域,更精準(zhǔn)控制提高效率。(畢竟阻塞的都是時間?。?/p>
DEMO3,僅修改 main 方法:
public static void main(String[] var0) { // 注意:myThread1 和 myThread2 傳入的 Counter 是兩個不同的對象 MyThread myThread1 = new MyThread(new Counter()); MyThread myThread2 = new MyThread(new Counter()); myThread1.start(); myThread2.start(); }
DEMO3 輸出:
Thread-0, i = 0 Thread-1, i = 0 Thread-0, i = 1 Thread-1, i = 1 Thread-1, i = 2 Thread-1, i = 3 Thread-0, i = 2 Thread-1, i = 4 Thread-0, i = 3 Thread-1, i = 5 Thread-0, i = 4 Thread-0, i = 5
同步鎖基于對象,只要鎖的來源一致,即可達(dá)到同步的作用。所以,但對象不一樣,則不能達(dá)到同步效果。
特性 2:
當(dāng)線程 A 調(diào)用某對象的synchronized 方法 或者 synchronized 代碼塊時,若同步鎖未釋放,其他線程調(diào)用同一對象的其他 synchronized 方法 或者 synchronized 代碼塊時將被阻塞,直至線程 A 釋放該對象的同步鎖。(注意:重點(diǎn)是其他)
DEMO4,僅修改 doOtherThings 方法的修飾:
public class Test { private static class Counter { public synchronized void count() { System.out.println(Thread.currentThread().getName() + " sleep"); try { Thread.sleep(3000); } catch (InterruptedException e) { e.printStackTrace(); } System.out.println(Thread.currentThread().getName() + " awake"); } public synchronized void doOtherThings(){ System.out.println(Thread.currentThread().getName() + " doOtherThings"); } } public static void main(String[] var0) { final Counter counter = new Counter(); new Thread(new Runnable() { @Override public void run() { counter.count(); } }).start(); new Thread(new Runnable() { @Override public void run() { counter.doOtherThings(); } }).start(); } }
DEMO4 輸出:
Thread-0 sleep Thread-0 awake Thread-1 doOtherThings
可見,synchronized 獲得的同步鎖并非僅僅鎖住代碼,而是鎖住整個對象。
此時應(yīng)提及 happens-before 原則,正因 happens-before 原則的存在才有此現(xiàn)象的發(fā)生。
happens-before 原則的其中一條:
管理鎖定原則:一個 unLock 操作先行發(fā)生于后面對同一個鎖的 lock 操作。
(此處暫不作過多解釋,解釋起來能再寫一篇文章了)
DEMO5,僅修改 doOtherThings 方法:
public void doOtherThings(){ synchronized (this){ System.out.println(Thread.currentThread().getName() + " doOtherThings"); } }
DEMO5 輸出:
Thread-0 sleep Thread-0 awake Thread-1 doOtherThings
DEMO4 和 DEMO5 的輸出結(jié)果竟然一致!沒錯,因?yàn)樗麄兊耐芥i來源一致(都是本實(shí)例自己),所以可以達(dá)到同步效果。
// 這兩個 synchronized 鎖的是同一個對象 public synchronized void count(){}; public void doOtherThings(){ synchronized (this){} }
DEMO6,去掉 doOtherThings 方法的同步關(guān)鍵字:
public void doOtherThings(){ System.out.println(Thread.currentThread().getName() + " doOtherThings"); }
DEMO6 輸出:
Thread-0 sleep Thread-1 doOtherThings Thread-0 awake
當(dāng)線程 A 調(diào)用某對象的synchronized 方法 或者 synchronized 代碼塊時,無論同步鎖是否釋放,其他線程調(diào)用同一對象的其他 非 synchronized 方法 或者 非 synchronized 代碼塊時可立即調(diào)用。
實(shí)例鎖和全局鎖
以上 DEMO 實(shí)現(xiàn)的都是實(shí)例鎖。鎖住(作用域)的是具體某一對象實(shí)例。
什么是全局鎖?
鎖住整個 Class,而非某個對象或?qū)嵗?/p>
注:單例型的實(shí)例鎖不屬于全局鎖。
全局鎖的實(shí)現(xiàn):
靜態(tài) synchronized 方法
DEMO7:
public class Test { private static class Counter { public static synchronized void count() { System.out.println(Thread.currentThread().getName() + " sleep"); try { Thread.sleep(3000); } catch (InterruptedException e) { e.printStackTrace(); } System.out.println(Thread.currentThread().getName() + " awake"); } public static synchronized void doOtherThings(){ System.out.println(Thread.currentThread().getName() + " doOtherThings"); } } public static void main(String[] var0) { new Thread(new Runnable() { @Override public void run() { Counter.count(); } }).start(); new Thread(new Runnable() { @Override public void run() { Counter.doOtherThings(); } }).start(); } }
DEMO7 輸出:
Thread-0 sleep Thread-0 awake Thread-1 doOtherThings
static 聲明的方法為全局方法,與對象實(shí)例化無關(guān),所以 static synchronized 方法為全局同步方法,與對象實(shí)例化無關(guān)。
synchronized 具體 Class 的代碼塊
DEMO8:
public class Test { private static class Counter { public static synchronized void count() { System.out.println(Thread.currentThread().getName() + " sleep"); try { Thread.sleep(3000); } catch (InterruptedException e) { e.printStackTrace(); } System.out.println(Thread.currentThread().getName() + " awake"); } public void doOtherThings(){ synchronized (Counter.class){ System.out.println(Thread.currentThread().getName() + " doOtherThings"); } } } public static void main(String[] var0) { new Thread(new Runnable() { @Override public void run() { Counter.count(); } }).start(); new Thread(new Runnable() { @Override public void run() { Counter counter = new Counter(); counter.doOtherThings(); } }).start(); } }
DEMO8 輸出:
Thread-0 sleep Thread-0 awake Thread-1 doOtherThings
synchronized (Counter.class) 獲得的同步鎖是全局的,static synchronized 獲得的同步鎖也是全局的,同一個鎖,所以達(dá)到同步效果。
區(qū)分 synchronized (this) 與 synchronized (Class.class)
DEMO9:
public class Test { private static class Counter { public void count() { synchronized (this){ System.out.println(Thread.currentThread().getName() + " sleep"); try { Thread.sleep(3000); } catch (InterruptedException e) { e.printStackTrace(); } System.out.println(Thread.currentThread().getName() + " awake"); } } public void doOtherThings(){ synchronized (Counter.class){ System.out.println(Thread.currentThread().getName() + " doOtherThings"); } } } public static void main(String[] var0) { final Counter counter = new Counter(); new Thread(new Runnable() { @Override public void run() { counter.count(); } }).start(); new Thread(new Runnable() { @Override public void run() { counter.doOtherThings(); } }).start(); } }
DEMO9 輸出:
Thread-0 sleep Thread-1 doOtherThings Thread-0 awake
synchronized (this) 獲得的是具體對象實(shí)例 counter 的鎖,而 synchronized (Counter.class) 獲得的是全局鎖,兩把不同的鎖,所以不能達(dá)到同步效果。
相關(guān)文章
詳解SpringBoot通過restTemplate實(shí)現(xiàn)消費(fèi)服務(wù)
本篇文章主要介紹了詳解使用RestTemplate消費(fèi)spring boot的Restful服務(wù),小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2018-01-01Spring如何根據(jù)條件創(chuàng)建bean,@Conditional注解使用方式
這篇文章主要介紹了Spring如何根據(jù)條件創(chuàng)建bean,@Conditional注解使用方式,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2023-06-06SpringBoot全局異常捕獲處理實(shí)現(xiàn)方案
這篇文章主要詳細(xì)介紹了SpringBoot全局異常捕獲處理實(shí)現(xiàn)方案,文章通過代碼示例給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作有一定的幫助,需要的朋友可以參考下2024-02-02Java實(shí)現(xiàn)Excel批量導(dǎo)入數(shù)據(jù)
這篇文章主要為大家詳細(xì)介紹了Java實(shí)現(xiàn)Excel批量導(dǎo)入數(shù)據(jù),文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下2020-08-08Java輸出通過InetAddress獲得的IP地址數(shù)組詳細(xì)解析
由于byte被認(rèn)為是unsigned byte,所以最高位的1將會被解釋為符號位,另外Java中存儲是按照補(bǔ)碼存儲,所以1000 0111會被認(rèn)為是補(bǔ)碼形式,轉(zhuǎn)換成原碼便是1111 0001,轉(zhuǎn)換成十進(jìn)制數(shù)便是-1212013-09-09java實(shí)現(xiàn)動態(tài)數(shù)組
這篇文章主要為大家詳細(xì)介紹了java實(shí)現(xiàn)動態(tài)數(shù)組,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下2021-08-08Springboot配置suffix指定mvc視圖的后綴方法
這篇文章主要介紹了Springboot配置suffix指定mvc視圖的后綴方法,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2021-07-07Java阻塞延遲隊(duì)列DelayQueue原理及使用詳解
這篇文章主要介紹了Java阻塞延遲隊(duì)列DelayQueue原理及使用詳解,阻塞隊(duì)列是一個支持兩個附加操作的隊(duì)列,這兩個附加的操作是:在隊(duì)列為空時,從隊(duì)列中獲取元素的消費(fèi)者線程會一直等待直到隊(duì)列變?yōu)榉强?需要的朋友可以參考下2023-12-12