<dependency> <groupId>net.jcip</groupId> <artifactId>jcip-annotations</artifactId> <version>1.0</version> </dependency> @ThreadSafe public class Counter { @GuardedBy("this") private int count; public synchronized void increment() { count++; } public synchronized int getCount() { return count; } }


上一篇:
下一篇:
切换中文