原文地址:http://blog.csdn.net/cq361106306/article/details/38736551
synchronized--同步
顧名思義是用於同步互斥的作用的。
這裡精簡的記一下它的使用方法以及意義:
public synchronized void AMethod() {
// ...
}
public void BMethod() {
synchronized (this) {
// ...
}
}
public synchronized static void method1() {
// ...
}
public void method2() {
synchronized (Test.class) {
// ...
}
}