标签: java synchronization locking
同步对象和同步实例有什么区别?什么更有效?
synchronize(this) { // things to synchronize }
或者
private static final Object LOCK = new Object(); synchronize(LOCK) { // things to synchronize }