JAVA中的每個對象都可以用作一個實現同步的鎖
重入的實現方法是
看一個重入鎖的實例
class Father {
public synchronized void doSth(){
System
}
}
class Child extends Father {
public synchronized void doSth() {
System
super
}
}
class Father {
public synchronized void doSth(){
System
}
}
class Child extends Father {
public synchronized void doSth() {
System
super
}
}
以上一段代碼
synchronized雖然提供了狀態同步的功能
From:http://tw.wingwit.com/Article/program/Java/gj/201311/27461.html