python程序中怎样使用线程?

python

一定要使用 threading 模块,不要使用 _thread 模块。threading 模块对 _thread 模块提供的底层线程原语做了更易用的抽象。

Aahz 的非常实用的 threading 教程中有一些幻灯片;可以参阅 http://www.pythoncraft.com/OSCON2001/ 。

以上是 python程序中怎样使用线程? 的全部内容, 来源链接: utcz.com/z/520574.html

回到顶部