What is the difference between a process and a thread?

后端 未结 30 2619
Happy的楠姐
Happy的楠姐 2020-11-22 00:39

What is the technical difference between a process and a thread?

I get the feeling a word like \'process\' is overused and there are also hardware and software threa

30条回答
  •  Happy的楠姐
    2020-11-22 01:11

    1. Basically, a thread is a part of a process without process thread wouldn't able to work.
    2. A thread is lightweight whereas the process is heavyweight.
    3. communication between process requires some Time whereas thread requires less time.
    4. Threads can share the same memory area whereas process lives in separate.

提交回复
热议问题