Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
内核级别的多线程意味着多个进程可以同时在不同的线程上执行。
用户级线程驻留在不共享相同地址空间的进程中。
那么,哪种类型的线程更适合计算密集型并行应用程序和 I/O 密集型并行应用程序?
实际上,用户级线程与内核级线程相比没有任何优势。(有一些无用的教科书发明了这些优点。)
用户线程是在内核线程存在之前发明的穷人线程。它们之所以存在,只是因为某些操作系统没有实现内核线程。