Python的标准库提供了两个模块:thread和threading,thread是低级模块,threading是高级模块,对thread进行了封装。绝大多数情况下,我们只需要使用threading这个高级模块。
启动一个线程就是把一个函数传入并创建Thread实例,然后调用start()开始执行:
import time,threadingdef loop(): PRint 'thread %s is running...'%threading.current_thread().name n = 0 while n<5: n= n+1 print 'thread %s >>> %s'%(threading.current_thread().name,n) time.sleep(1) print 'thread %s end.' %threading.current_thread().nameprint 'thread %s in running...' % threading.current_thread().namet = threading.Thread(target = loop,name = 'LoopThread')t.start()t.join()print 'thread %s end.' %threading.current_thread().name输出结果:
thread MainThread is running… thread LoopThread is running… thread LoopThread >>> 1 thread LoopThread >>> 2 thread LoopThread >>> 3 thread LoopThread >>> 4 thread LoopThread >>> 5 thread LoopThread ended. thread MainThread ended.
由于任何进程默认就会启动一个线程,我们把该线程称为主线程,主线程又可以启动新的线程,Python的threading模块有个current_thread()函数,它永远返回当前线程的实例。主线程实例的名字叫MainThread,子线程的名字在创建时指定,我们用LoopThread命名子线程。名字仅仅在打印时用来显示,完全没有其他意义,如果不起名字Python就自动给线程命名为Thread-1,Thread-2……
>
starting writer at: Mon Mar 06 16:34:51 2017 add for Q… size now= 1 starting reader at: Mon Mar 06 16:34:51 2017 sub from Q… size now= 0 add for Q… size now= 1 sub from Q… size now= 0 add for Q… size now= 1 add for Q… size now= 2 writer finished at: Mon Mar 06 16:34:57 2017 sub from Q… size now= 1 sub from Q… size now= 0 reader finished at: Mon Mar 06 16:35:06 2017 all DONE
参考文献: http://www.tuicool.com/articles/vQQNbiz
新闻热点
疑难解答