[計概]執行緒(Thread) 介紹
最後更新日期:2024年08月10日
執行緒是什麼?
可以把執行緒想成是一個勤奮的工人,他們在程序( Process )這座工廠裡賣力地工作。
組成
- Register
- Counter
- Stack
三種狀態
- Running
- Ready
- Blocked
特性
- 單個程序( Process )中同時會有多個執行緒( Thread )在執行( multiple threads can run simultaneously within a single process )
- 執行緒共享記憶體( memory )
- Thread 之間彼此溝通較 Process 輕快且有效率( communication between threads is more lightweight and efficient than communication between processes )