Python---多线程(threading)
threading提供线程相关操作,python当前版本的多线程库没有实现优先级、线程组,线程也不能被停止、暂停、恢复和中断
threading提供的类:
Thread,Lock,Rlock,Condition,Semaphore,Event,Timer,local
threading模块常用方法:
threading.currentThread()返回当前线程句柄
threading.enumerate()返回一个办函正在运行的线程的list
threading.activeCount()返回正在运行的线程数量
threading.TIMEOUT_MAX设置threading全局超时时间
2. 线程模块
2.1 Thread
2.2 Lock
2.3 RLock
2.4 Condition
2.5 Semaphore/BoundedSemaphore
2.6 Event
2.7 Timer
2.8 local
参考:http://www.cnblogs.com/tkqasn/p/5700281.html
以上是 Python---多线程(threading) 的全部内容, 来源链接: utcz.com/z/388088.html