반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 맥북 필수 앱
- react jsx
- 백준 알고리즘
- 자바 영어면접
- 자바 기술면접
- React
- 자바 개발자
- 백준 단계별로 풀어보기
- 자바 인터뷰
- react state
- tech interview
- jsx 문법
- 알고리즘
- 백준
- 맥북 사용법
- 아톰에디터
- 생활코딩
- 자바 면접
- React props
- AtomEditor
- 맥북 팁
- node.js
- Express middleware
- 맥북 초보
- 리액트
- 기술면접
- Java tech interview
- Node.js Express
- 맥북 유용한 앱
- mysql
Archives
- Today
- Total
song.log
[자바 기술면접] 22. 스레드 동기화란? 본문
반응형
- 정의
스레드 동기화 : 멀티 스레드 프로그래밍에서 한번에 하나의 스레드만 공유 리소스에 접근할 수 있도록 보장합니다. 여러 스레드들이 공유하는 자원에 대한 접근을 조절하여 스레드 간의 충돌을 방지하고 데이터의 일관성을 유지하는 것을 의미합니다. 특정 코드 블록을 임계영역(critical section)으로 설정하고, 이 영역에 락(lock)을 취득한 스레드만이 해당 영역의 리소스를 사용할 수 있도록 하는 것입니다.
-영어 정리 :
Thread synchronization: Ensures that only one thread at a time can access shared resources in multi-threaded programming. It controls access to resources shared by multiple threads, preventing conflicts between threads and maintaining data consistency. It involves designating a specific code block as a critical section and allowing only the thread that acquires the lock to access the resources in that section.
반응형
'StudyLog > Java interview' 카테고리의 다른 글
[자바 기술면접] 24. 데몬스레드란? (0) | 2023.04.29 |
---|---|
[자바 기술면접] 23. 데드락이란? (0) | 2023.04.29 |
[자바 기술면접] 21. 스레드의 상태 (0) | 2023.04.29 |
[자바 기술면접] 20. 멀티스레딩이란? (0) | 2023.04.29 |
[자바 기술면접] 19. 프로세스(Process) vs 스레드(Thread) (0) | 2023.04.29 |
Comments