Lock與synchronized 的區別

一、ReentrantLock 擁有Synchronized相同的併發性和內存語義,此外還多了 鎖投票,定時鎖等候和中斷鎖等候html

     線程A和B都要獲取對象O的鎖定,假設A獲取了對象O鎖,B將等待A釋放對O的鎖定,java

     若是使用 synchronized ,若是A不釋放,B將一直等下去,不能被中斷程序員

     若是 使用ReentrantLock,若是A不釋放,可使B在等待了足夠長的時間之後,中斷等待,而幹別的事情安全

 

    ReentrantLock獲取鎖定與三種方式:
    a)  lock(), 若是獲取了鎖當即返回,若是別的線程持有鎖,當前線程則一直處於休眠狀態,直到獲取鎖多線程

    b) tryLock(), 若是獲取了鎖當即返回true,若是別的線程正持有鎖,當即返回false;併發

    c)tryLock(long timeout,TimeUnit unit),   若是獲取了鎖定當即返回true,若是別的線程正持有鎖,會等待參數給定的時間,在等待的過程當中,若是獲取了鎖定,就返回true,若是等待超時,返回false;dom

    d) lockInterruptibly:若是獲取了鎖定當即返回,若是沒有獲取鎖定,當前線程處於休眠狀態,直到或者鎖定,或者當前線程被別的線程中斷ide

 

二、synchronized是在JVM層面上實現的,不但能夠經過一些監控工具監控synchronized的鎖定,並且在代碼執行時出現異 常,JVM會自動釋放鎖定,可是使用Lock則不行,lock是經過代碼實現的,要保證鎖定必定會被釋放,就必須將unLock()放到 finally{}中工具

 

三、在資源競爭不是很激烈的狀況下,Synchronized的性能要優於ReetrantLock,可是在資源競爭很激烈的狀況下,Synchronized的性能會降低幾十倍,可是ReetrantLock的性能能維持常態;性能

 

 

下面內容 是轉載 http://zzhonghe.iteye.com/blog/826162

 

5.0的多線程任務包對於同步的性能方面有了很大的改進,在原有synchronized關鍵字的基礎上,又增長了ReentrantLock,以及各類Atomic類。瞭解其性能的優劣程度,有助與咱們在特定的情形下作出正確的選擇。

整體的結論先擺出來: 

synchronized:
在資源競爭不是很激烈的狀況下,偶爾會有同步的情形下,synchronized是很合適的。緣由在於,編譯程序一般會盡量的進行優化synchronize,另外可讀性很是好,無論用沒用過5.0多線程包的程序員都能理解。

ReentrantLock:
ReentrantLock 提供了多樣化的同步,好比有時間限制的同步,能夠被Interrupt的同步(synchronized的同步是不能Interrupt的)等。在資源競 爭不激烈的情形下,性能稍微比synchronized差點點。可是當同步很是激烈的時候,synchronized的性能一會兒能降低好幾十倍。而 ReentrantLock確還能維持常態。

Atomic:
和上面的相似,不激烈狀況下,性能比synchronized略 遜,而激烈的時候,也能維持常態。激烈的時候,Atomic的性能會優於ReentrantLock一倍左右。可是其有一個缺點,就是隻能同步一個值,一 段代碼中只能出現一個Atomic的變量,多於一個同步無效。由於他不能在多個Atomic之間同步。


因此,咱們寫同步的時候,優先考慮synchronized,若是有特殊須要,再進一步優化。ReentrantLock和Atomic若是用的很差,不只不能提升性能,還可能帶來災難。

先貼測試結果:再貼代碼(Atomic測試代碼不許確,一個同步中只能有1個Actomic,這裏用了2個,可是這裏的測試只看速度)
==========================
round:100000 thread:5
Sync = 35301694
Lock = 56255753
Atom = 43467535
==========================
round:200000 thread:10
Sync = 110514604
Lock = 204235455
Atom = 170535361
==========================
round:300000 thread:15
Sync = 253123791
Lock = 448577123
Atom = 362797227
==========================
round:400000 thread:20
Sync = 16562148262
Lock = 846454786
Atom = 667947183
==========================
round:500000 thread:25
Sync = 26932301731
Lock = 1273354016
Atom = 982564544

代碼以下:

 

Java代碼   收藏代碼
    1. package test.thread;     
    2.     
    3. import static java.lang.System.out;     
    4.     
    5. import java.util.Random;     
    6. import java.util.concurrent.BrokenBarrierException;     
    7. import java.util.concurrent.CyclicBarrier;     
    8. import java.util.concurrent.ExecutorService;     
    9. import java.util.concurrent.Executors;     
    10. import java.util.concurrent.atomic.AtomicInteger;     
    11. import java.util.concurrent.atomic.AtomicLong;     
    12. import java.util.concurrent.locks.ReentrantLock;     
    13.     
    14. public class TestSyncMethods {     
    15.          
    16.     public static void test(int round,int threadNum,CyclicBarrier cyclicBarrier){     
    17.         new SyncTest("Sync",round,threadNum,cyclicBarrier).testTime();     
    18.         new LockTest("Lock",round,threadNum,cyclicBarrier).testTime();     
    19.         new AtomicTest("Atom",round,threadNum,cyclicBarrier).testTime();     
    20.     }     
    21.     
    22.     public static void main(String args[]){     
    23.              
    24.         for(int i=0;i<5;i++){     
    25.             int round=100000*(i+1);     
    26.             int threadNum=5*(i+1);     
    27.             CyclicBarrier cb=new CyclicBarrier(threadNum*2+1);     
    28.             out.println("==========================");     
    29.             out.println("round:"+round+" thread:"+threadNum);     
    30.             test(round,threadNum,cb);     
    31.                  
    32.         }     
    33.     }     
    34. }     
    35.     
    36. class SyncTest extends TestTemplate{     
    37.     public SyncTest(String _id,int _round,int _threadNum,CyclicBarrier _cb){     
    38.         super( _id, _round, _threadNum, _cb);     
    39.     }     
    40.     @Override    
    41.     /**   
    42.      * synchronized關鍵字不在方法簽名裏面,因此不涉及重載問題   
    43.      */    
    44.     synchronized long  getValue() {     
    45.         return super.countValue;     
    46.     }     
    47.     @Override    
    48.     synchronized void  sumValue() {     
    49.         super.countValue+=preInit[index++%round];     
    50.     }     
    51. }     
    52.     
    53.     
    54. class LockTest extends TestTemplate{     
    55.     ReentrantLock lock=new ReentrantLock();     
    56.     public LockTest(String _id,int _round,int _threadNum,CyclicBarrier _cb){     
    57.         super( _id, _round, _threadNum, _cb);     
    58.     }     
    59.     /**   
    60.      * synchronized關鍵字不在方法簽名裏面,因此不涉及重載問題   
    61.      */    
    62.     @Override    
    63.     long getValue() {     
    64.         try{     
    65.             lock.lock();     
    66.             return super.countValue;     
    67.         }finally{     
    68.             lock.unlock();     
    69.         }     
    70.     }     
    71.     @Override    
    72.     void sumValue() {     
    73.         try{     
    74.             lock.lock();     
    75.             super.countValue+=preInit[index++%round];     
    76.         }finally{     
    77.             lock.unlock();     
    78.         }     
    79.     }     
    80. }     
    81.     
    82.     
    83. class AtomicTest extends TestTemplate{     
    84.     public AtomicTest(String _id,int _round,int _threadNum,CyclicBarrier _cb){     
    85.         super( _id, _round, _threadNum, _cb);     
    86.     }     
    87.     @Override    
    88.     /**   
    89.      * synchronized關鍵字不在方法簽名裏面,因此不涉及重載問題   
    90.      */    
    91.     long  getValue() {     
    92.         return super.countValueAtmoic.get();     
    93.     }     
    94.     @Override    
    95.     void  sumValue() {     
    96.         super.countValueAtmoic.addAndGet(super.preInit[indexAtomic.get()%round]);     
    97.     }     
    98. }     
    99. abstract class TestTemplate{     
    100.     private String id;     
    101.     protected int round;     
    102.     private int threadNum;     
    103.     protected long countValue;     
    104.     protected AtomicLong countValueAtmoic=new AtomicLong(0);     
    105.     protected int[] preInit;     
    106.     protected int index;     
    107.     protected AtomicInteger indexAtomic=new AtomicInteger(0);     
    108.     Random r=new Random(47);     
    109.     //任務柵欄,同批任務,先到達wait的任務掛起,一直等到所有任務到達制定的wait地點後,才能所有喚醒,繼續執行     
    110.     private CyclicBarrier cb;     
    111.     public TestTemplate(String _id,int _round,int _threadNum,CyclicBarrier _cb){     
    112.         this.id=_id;     
    113.         this.round=_round;     
    114.         this.threadNum=_threadNum;     
    115.         cb=_cb;     
    116.         preInit=new int[round];     
    117.         for(int i=0;i<preInit.length;i++){     
    118.             preInit[i]=r.nextInt(100);     
    119.         }     
    120.     }     
    121.          
    122.     abstract void sumValue();     
    123.     /*   
    124.      * 對long的操做是非原子的,原子操做只針對32位   
    125.      * long是64位,底層操做的時候分2個32位讀寫,所以不是線程安全   
    126.      */    
    127.     abstract long getValue();     
    128.     
    129.     public void testTime(){     
    130.         ExecutorService se=Executors.newCachedThreadPool();     
    131.         long start=System.nanoTime();     
    132.         //同時開啓2*ThreadNum個數的讀寫線程     
    133.         for(int i=0;i<threadNum;i++){     
    134.             se.execute(new Runnable(){     
    135.                 public void run() {     
    136.                     for(int i=0;i<round;i++){     
    137.                         sumValue();     
    138.                     }     
    139.     
    140.                     //每一個線程執行完同步方法後就等待     
    141.                     try {     
    142.                         cb.await();     
    143.                     } catch (InterruptedException e) {     
    144.                         // TODO Auto-generated catch block     
    145.                         e.printStackTrace();     
    146.                     } catch (BrokenBarrierException e) {     
    147.                         // TODO Auto-generated catch block     
    148.                         e.printStackTrace();     
    149.                     }     
    150.     
    151.     
    152.                 }     
    153.             });     
    154.             se.execute(new Runnable(){     
    155.                 public void run() {     
    156.     
    157.                     getValue();     
    158.                     try {     
    159.                         //每一個線程執行完同步方法後就等待     
    160.                         cb.await();     
    161.                     } catch (InterruptedException e) {     
    162.                         // TODO Auto-generated catch block     
    163.                         e.printStackTrace();     
    164.                     } catch (BrokenBarrierException e) {     
    165.                         // TODO Auto-generated catch block     
    166.                         e.printStackTrace();     
    167.                     }     
    168.     
    169.                 }     
    170.             });     
    171.         }     
    172.              
    173.         try {     
    174.             //當前統計線程也wait,因此CyclicBarrier的初始值是threadNum*2+1     
    175.             cb.await();     
    176.         } catch (InterruptedException e) {     
    177.             // TODO Auto-generated catch block     
    178.             e.printStackTrace();     
    179.         } catch (BrokenBarrierException e) {     
    180.             // TODO Auto-generated catch block     
    181.             e.printStackTrace();     
    182.         }     
    183.         //全部線程執行完成以後,纔會跑到這一步     
    184.         long duration=System.nanoTime()-start;     
    185.         out.println(id+" = "+duration);     
    186.              
    187.     }     
    188.     
    189. }   
相關文章
相關標籤/搜索