기록/Whiteship 라이브 스터디
Whiteship 10주차(멀티쓰레드) 보기
jeongdalma
2021. 1. 24. 00:18
- Actor model
- 동시성 과 병렬성
- Critical Path
- 전체 실행시간에 영향을 미치는 작업
- 동시 작업이 진행되었을 때 가장 긴 시간이 걸리는 것
- 경쟁 상태 (race condition)
- Lock과 Condition을 이용하면 설변적인 통지가 가능
- parkadd.tistory.com/48
- VisualVM
- visualvm.github.io/
- heap dump
- thread dump
Thread
A thread is a thread of execution in a program. The Java Virtual Machine allows an application to have multiple threads of execution running concurrently.
www.notion.so
개발자 한선우
yadon079.github.io
10주차 과제: 멀티쓰레드 프로그래밍 · Issue #10 · whiteship/live-study
목표 자바의 멀티쓰레드 프로그래밍에 대해 학습하세요. 학습할 것 (필수) Thread 클래스와 Runnable 인터페이스 쓰레드의 상태 쓰레드의 우선순위 Main 쓰레드 동기화 데드락 마감일시 2021년 1월 23일
github.com