Locks In Synchronized Methods 同步方法中的锁
Do not include synchronized methods into a loop structure.
不要将同步方法放到循环结构中。
To reduce contention in the JVM and operating system, use synchronized methods only when feasible.
为了减少JVM和操作系统中的争用,应该只在可行的情况下才使用同步方法。
These locks do not require block structures, so they are more flexible than synchronized methods or statements.
这些锁不需要使用语句结构,所以它们比同步方法或语句更灵活。
应用推荐