티스토리 뷰
반응형
싱글톤 인스턴스에서 가장 조심해야 할 것은 자원을 공유하는 것이다.
우선 싱글톤에 대해서 모르시면 이 글을 참고해주시길 바랍니다.
https://vixxcode.tistory.com/190
싱글톤 인스턴스에서 자원을 공유하면 어떤 일이 일어날까?
그림대로 손님1과 손님2 두 클라이언트가 있다고 하자.
그리고 Shop이란 클래스는 싱글톤으로 관리되고 있으며 price라는 변수를 공유하여 쓰고 있는 상황이다.
이럴 때 customer1이 결제한 금액은 어떻게 될까?
Shop.java
import java.util.Random;
public class Shop implements Runnable {
private Shop() {
}
private static Shop instance;
private static final Random RANDOM = new Random();
private int price;
public static Shop getInstance() {
if (instance == null) {
instance = new Shop();
}
return instance;
}
@Override
public void run() {
this.price = 1 + RANDOM.nextInt(100);
System.out.println(Thread.currentThread().getName()+ " price = " + price);
this.getPrice();
}
public int getPrice() {
System.out.println("Current "+ Thread.currentThread().getName()+ " price = " + price);
return price;
}
}
싱글톤 방식은 lazy 방식으로 구현하였으며, price라는 변수를 주목하자
Test 구현
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
class ThreadTest {
@Test
@DisplayName("싱글톤 멀티쓰레드 테스트")
void test() throws InterruptedException {
Shop shop1 = Shop.getInstance();
Thread thread1 = new Thread(shop1);
Shop shop2 = Shop.getInstance();
Thread thread2 = new Thread(shop2);
thread1.start();
thread2.start();
}
}
그럼 위의 실행 결과는 어떻게 나왔을까?
그렇다. customer1은 분명 36으로 알고 결제했는데. 결제된 금액은 95 인 것이다!!
이렇게 싱글톤을 다룰 때는 공유되고 있는 변수가 있는 지 확인하는 습관을 기르도록 하는 것이 중요하다.
반응형
'JVM > JAVA' 카테고리의 다른 글
[JAVA] [ArrayList] removeIf에 대해서 (0) | 2022.01.31 |
---|---|
[JAVA] ArrayList thread safe하지 않다는 뜻이 뭘까? (0) | 2022.01.08 |
[JAVA] [Collections] binarySearch에 대해서 (0) | 2021.12.23 |
[JAVA] Collections.sort()에 대해서 (0) | 2021.12.21 |
[JAVA] HashMap 에 대하여 (0) | 2021.12.11 |
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- dockerignore
- env
- 자바
- 카카오
- thread
- docker-compose
- PostgreSQL
- 프로그래머스
- 백준
- Collections
- ubuntu
- 알고리즘
- 그래프
- Python
- docker
- BFS
- Pattern
- setattr
- headers
- 2021 KAKAO BLIND RECRUITMENT
- 파이썬
- 면접
- Command Line
- postgres
- DRF
- Celery
- Spring
- Java
- Linux
- django
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함