码迷,mamicode.com
首页 > 编程语言 > 详细

进程与线程的区别?

时间:2018-03-26 23:38:47      阅读:272      评论:0      收藏:0      [点我收藏+]

标签:进程   线程   

线程: 有时被称为轻量级进程(Lightweight Process,LWP),是程序执行流的最小单元。是一串指令的集合。
线程是程序中一个单一的顺序控制流程。进程内一个相对独立的、可调度的执行单元,是系统独立调度和分派CPU的基本单位,指运行中的程序的调度单位。
在单个程序中同时运行多个线程完成不同的工作,称为多线程

进程: qq 要以一个整体的形式暴露给操作系统管理,里面包含对各种资源的调用,内存的管理,网络接口的调用等。。。
对各种资源管理的集合 就可以成为进程。

进程 要操作cpu , 必须要先创建一个线程,
all the threads in a process have the same view of the memory
所有在同一个进程里的线程是共享同一块内存空间的


进程与线程的区别?

Threads share the address space of the process that created it; processes have their own address space.
线程共享内存空间,进程的内存是独立的

Threads have direct access to the data segment of its process; processes have their own copy of the data segment of the parent process.
线程可以直接访问它自己的数据段;进程需要复制它的父进程的数据段

Threads can directly communicate with other threads of its process; processes must use interprocess communication to communicate with sibling processes.
同一个进程的线程之间可以直接交流,两个进程想通信,必须通过一个中间代理来实现

New threads are easily created; new processes require duplication of the parent process.
创建新线程很简单, 创建新进程需要对其父进程进行一次克隆

Threads can exercise considerable control over threads of the same process; processes can only exercise control over child processes.
一个线程可以控制和操作同一进程里的其他线程,但是进程只能操作子进程

Changes to the main thread (cancellation, priority change, etc.) may affect the behavior of the other threads of the process; changes to the parent process does not affect child processes.

对主线程 (取消、优先级更改等) 的更改可能会影响进程其他线程的行为;对父进程的更改不会影响子进程。

进程与线程的区别?

标签:进程   线程   

原文地址:http://blog.51cto.com/ilctc/2091406

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!