同步方法
你可以使用任何類對象的方法子集甚至是全集互斥
class MyClass
{
synchronized public void methodl()
{
//Code for the method
}
synchronized public void method
{
//code for the me method
}
public void method
{
//code foe the method
}
}
現在
同步過程使用了每個對象與相關的一個內部鎖(lock)
注意這裡沒有限制對同一類的兩個不同對象同時執行同步方法
在myClass類中的三個方法
[
From:http://tw.wingwit.com/Article/program/Java/gj/201311/27746.html