Glossary entry (derived from question below)
English term
multithreading
The design of the Java language makes multithreading essential for all but the simplest applets. In particular, IO and GUI programming both require multithreading to provide a seamless experience for the user. (IBM)
On a multi-processor computer, multithreading is implemented with a mixture of time-slicing and genuine concurrency – where different threads run code simultaneously on different CPUs. (O'Reilly Media)
Multithreading requires careful programming. For most tasks, you can reduce complexity by queuing requests for execution by thread pool threads. (Microsoft Corporation)
3 +2 | 多线程, 多线程技术 | Yurek |
Feb 22, 2010 13:07: changed "Kudoz queue" from "In queue" to "Public"
Feb 22, 2010 13:54: changed "Stage" from "Preparation" to "Submission"
Feb 25, 2010 14:54: changed "Stage" from "Submission" to "Selection"
Mar 13, 2010 09:54: changed "Stage" from "Selection" to "Completion"
Mar 13, 2010 11:14: Yurek changed "Edited KOG entry" from "<a href="/profile/0">'s</a> old entry - "multithreading"" to ""多线程, 多线程技术""
Proposed translations
多线程, 多线程技术
CMT——Coarse-Grained MultiThreading 它是最简单的多线程技术,当单一执行线程遇到长时间的延迟,如Cache Missed时,就进行线程切换,直到原线程等待的操作完成,才切换回去。Coarse-Grained MultiThreading有时也叫Block MultiThreading堵塞多线程或者Cooperative MultiThreading协作多线程。 (多线程)
多 线 程(Multithreading) ---- 一 个 进 程 仅 仅 是 一 块 内 存 地 址, 它 由 程 序 本 身 和 程 序 所 用 的 数 据 组 成。 一 个 进 程 不 能 和 其 它 进 程 共 享 内 存 区, 虽 然 有 专 门 的 机 制 来 建 立 共 享 内 存 区 的 位 置 以 便 使 进 程 之 间 进 行 通 信。 任 何 进 程 都 是 系 统 中 一 个 单 一 的 整 体, 进 程 不 能 重 叠, 它 们 不 可 未 经 操 作 系 统 授 权 地 存 取 其 它 进 程。 这 必 须 作 为 一 条 规 则 而 被 严 格 遵 守。 常 说 的 保 护 模 式 就 是 由 此 得 来 的。 (多 线 程(Multithreading))
Visual Basic.NET是微软推出的目前最新的程序设计语言,它比Visual Basic6.0作了重大改变,从而支持多线程技术。为了阐明Visual Basic.net的多线程机制的结构、功能和用法,首先通过一个实例即用VB6.0和VB.net同时去计算一个循环的大体执行时间来引出并实践了VB.net的多线程机制,然后归纳总结了其机制和用法。证明VB.net的多线程机制可以解决一些VB6.0难以解决的问题,说明多线程技术的优点在于它不仅在系统中可以提高程序的并发度,而且在多线程编程时可以灵活地实现同一应用程序中的多模块并发执行,这在现代程序设计中非常重要。 (Visual Basic.net的多线程机制)
Something went wrong...