24.08.06 18:40 작성
·
91
1
public static void main(String[] args) throws InterruptedException {
Counter counter = new Counter();
Runnable task = new Runnable() {
@Override
public void run() {
for (int i = 0; i < 10000; i++) {
counter.increment();
log(counter.getCount()); // 로그 출력 추가!!!!!!!!!!!!!!!
}
}
};
Thread thread1 = new Thread(task);
Thread thread2 = new Thread(task);
thread1.start();
thread2.start();
thread1.join();
thread2.join();
log(counter.getCount());
}
static class Counter {
private int count;
public void increment() {
count++;
}
public int getCount() {
return count;
}
}
문제를 푸는 도중 count의 값을 확인해보고 싶어서 MyLogger.log(counter.getCount());를 호출했더니 문제 없이 20000이 계속 출력됩니다.
synchronized를 사용하지 않아서 여전히 동시성 문제는 발생할텐데 어떻게 20000이라는 값이 나오게 되는지 궁금합니다!!
2024. 08. 18. 11:49
감사합니다!!