标签:
原文地址: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) { ???? // ... ????} } |
标签:
原文地址:http://www.cnblogs.com/huangwenjie/p/5574915.html