Content deleted Content added
No edit summary |
m disambig program |
||
Line 1:
[[ja:スレッド (コンピュータプログラミング)]] [[pl:Wątek (informatyka)]] [[es:hilo(informática)]] [[de:Thread]]
Many [[programming language]]s, [[operating system]]s, and other [[software development environment]]s support what are called "'''threads'''" of [[execution]]. [[Thread]]s are similar to [[computer process|processes]], in that both represent a single [[sequence]] of [[instruction]]s executed in parallel with sequences, either by [[time slicing]] or [[multiprocessing]]. This allows a [[computer program|program]] to split itself into two or more simultaneously running [[task]]s.
A common use of threads is having one thread paying attention to the [[graphical user interface]], while others do a long calculation [[in the background]].
The user will see the [[application]] responsive.
|