일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- licence delete curl
- zip 파일 암호화
- API
- TensorFlow
- high level client
- Python
- license delete
- analyzer test
- Test
- 차트
- Java
- 900gle
- zip 암호화
- matplotlib
- aggs
- springboot
- token filter test
- Mac
- query
- docker
- aggregation
- Kafka
- plugin
- MySQL
- sort
- License
- Elasticsearch
- 파이썬
- flask
- ELASTIC
Archives
- Today
- Total
개발잡부
[java] AtomicInteger 본문
반응형
AtomicInteger 여러 스레드에서 동시에 액세스할 수 있는 다중 스레드 환경에서 원자 정수 카운터로 사용할 수 있는 Java의 클래스입니다.
AtomicInteger는 synchronized 보다 적은 비용으로 동시성을 보장할 수 있습니다.
y = atomic.get(); -> y = i;
y = atomic.incrementAndGet(); -> y = ++i;
y = atomic.getAndIncrement(); -> y = i++;
y = atomic.decrementAndGet(); -> y = --i;
y = atomic.getAndDecrement(); -> y = i--;
y = atomic.addAndGet(x); -> i = i + x; y = i;
y = atomic.getAndAdd(x); -> y = i; i = i + x;
atomic.set(x); -> i = x;
y = atomic.getAndSet(x); -> y = i; i = i + x;
반응형
'JAVA > java' 카테고리의 다른 글
[java ]StringTokenizer (0) | 2023.05.10 |
---|---|
[java] 쓰레드 세이프(Thread Safe) (0) | 2023.05.04 |
[java] Character Class (0) | 2023.04.09 |
[java] File Class (0) | 2023.03.18 |
[java] 제네릭(generic) (0) | 2023.03.05 |
Comments