```java
import java.util.concurrent.atomic.AtomicLong;
public class AtomicLongExample {
private static AtomicLong counter = new AtomicLong(0);
public static long getNextValue() {
return counter.incrementAndGet();
}
public static void main(String[] args) {
// 測試 AtomicLong 的遞增功能
System.out.println(getNextValue()); // 印出 1
System.out.println(getNextValue()); // 印出 2
System.out.println(getNextValue()); // 印出 3
// 測試 AtomicLong 的原子性
Runnable runnable = () -> {
for (int i = 0; i < 1000; i++) {
System.out.println(getNextValue());
}
};
Thread thread1 = new Thread(runnable);
Thread thread2 = new Thread(runnable);
thread1.start();
thread2.start();
}
}
```
在這個範例中,我們使用了 AtomicLong 類型的靜態變數 counter 來實現計數器的功能。getNextValue 方法使用 incrementAndGet 方法來遞增計數器的值,並返回遞增後的值。
在 main 方法中,我們先測試了 getNextValue 方法的遞增功能,然後使用兩個線程並行運行,每個線程運行 1000 次 getNextValue 方法,觀察是否能保持原子性。