일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 자바 영어면접
- Node.js Express
- react jsx
- 맥북 팁
- 알고리즘
- 리액트
- 백준 단계별로 풀어보기
- 맥북 필수 앱
- tech interview
- 백준
- 아톰에디터
- 맥북 사용법
- 맥북 유용한 앱
- React props
- AtomEditor
- Java tech interview
- jsx 문법
- 자바 기술면접
- 맥북 초보
- node.js
- 생활코딩
- 자바 개발자
- React
- Express middleware
- 기술면접
- 백준 알고리즘
- react state
- 자바 면접
- 자바 인터뷰
- mysql
- Today
- Total
song.log
[자바 기술면접] 19. 프로세스(Process) vs 스레드(Thread) 본문
- 정의
프로세스 : 운영체제에서 할당하는 작업의 단위로 독립적인 메모리 공간을 할당받아 실행됩니다. 프로세스는 각자의 주소 공간과 데이터 스택을 가지며, 다른 프로세스의 변수나 자료에 직접 접근할 수 없습니다. 각가의 프로세스는 독립적으로실행되기 때문에, 하나의 프로세스에서 문제가 발생하더라도 다른 프로세스에는 영향을 미치지 않습니다.
스레드 : 하나의 프로세스 내에서 실행되는 여러 실행 흐름의 단위입니다. 스레드는 프로세스의 주소 공간을 공유하며, 데이터 스택과 PC레지스터만 따로 가지고 있습니다. 즉, 같은 프로세스 내에서 여러개의 스레드가 동시에 작업을 수행할 수 있습니다.
- 영어 정리 :
Process : An instance of a program that is being executed by a computer. A process can be thought of as a container for a set of resources used when executing a program, such as memory, file handles, and system resources. Each process has its own memory space and runs independently of other processes.
Thread : A component of a process. A thread is a lightweight unit of execution within a process that can be scheduled for execution. Each thread shares the same memory space as the process and other threads within the process, but has its own execution stack and program counter. Multiple threads within a process can run concurrently and share the resources of the process.
In summary, a process is a container for a set of resources used when executing a program, while a thread is a unit of execution within a process that can be scheduled for execution and shares the same memory space as the process and other threads within the process.
'StudyLog > Java interview' 카테고리의 다른 글
[자바 기술면접] 21. 스레드의 상태 (0) | 2023.04.29 |
---|---|
[자바 기술면접] 20. 멀티스레딩이란? (0) | 2023.04.29 |
[자바 기술면접] 18. 예외(Exception) vs 오류(Error) (0) | 2023.04.29 |
[자바 기술면접] 17. String vs StringBuffer (0) | 2023.04.29 |
[자바 기술면접] 16. 기본 데이터 유형 vs 참조 데이터 유형 (0) | 2023.04.29 |