Concurrency系列(三): 朝Happens-Before邁進
我們先前談過了Sequenced-Before,現在我們來談什麼是Happens-Before
Java對Happens-Before的定義
Java的官方文件定義了什麼是Happens-Before,先不管那些volatile, synchronized等用詞,我只看最簡單的一句
If one action happens-before another, then the first is visible to and ordered before the second.
解釋的很簡單,當行為A happens-before B時,代表A的效果可見,而且發生於B之前。
通俗的解釋
讓我們用比較通俗一點的方式解釋happens-before的概念,這是由Jeff Preshing所提供的解釋。
Let A and B represent operations performed by a multithreaded process. If A happens-before B, then the memory effects of A effectively become visible to the thread performing B before B is performed.
可以看到和Java的定義是差不多的,都在說明前一個操作的效果在後一個操作執行之前必須要可見。舉個簡單的例子就是
// example provided by Jeff Preshing
int A, B;
void foo()
{
// This store to A ...
A = 5;
// ... effectively becomes visible before the following loads. Duh!
B = A * A;
}
在上述的簡單的程式碼中,第一行的效果必須要讓第二行的效果可見,B才會正確的得到25,你說這不是很理所當然嗎?
寫在前面一行的程式不是本來就應該先執行,之後才執行下一行嗎? 不,並不見得。 這裡有個關鍵是,Happens-before強調的是visible,而不是實際上執行的順序。
實際上程式在執行時,只需要"看起來有這樣的效果"