百科狗-知识改变命运!

Python线程编程的两种方式

乐乐2年前 (2023-11-21)阅读数 17#技术干货
文章标签线程

Python中如果要使用线程的话,python的lib中提供了两种方式。一种是函数式,一种是用类来包装的线程对象。举两个简单的例子希望起到抛砖引玉的作用,关于多线程编程的其他知识例如互斥、信号量、临界区等请参考python的文档及相关资料。

1、调用thread模块中的start_new_thread()函数来产生新的线程,请看代码:

#thread_example.py

importtime

importthread

deftimer(no,interval):#自己写的线程函数

whileTrue:

print'Thread:(%d)Time:%s'%(no,time.ctime())

time.sleep(interval)

deftest():

thread.start_new_thread(timer,(1,1))#使用thread.start_new_thread()产生2个新的线程

thread.start_new_thread(timer,(2,3))

if__name__=='__main__':

test()

这个是thread.start_new_thread(function,args[,kwargs])函数原型,其中function参数是你将要调用的线程函数;args是讲传递给你的线程函数的参数,他必须是个tuple类型;而kwargs是可选的参数。线程的结束一般依靠线程函数的自然结束;也可以在线程函数中调用thread.exit(),他抛出SystemExitexception,达到退出线程的目的。

2、通过调用threading模块继承threading.Thread类来包装一个线程对象。请看代码#threading_example.py

importthreading

importtime

classtimer(threading.Thread):#我的timer类继承自threading.Thread类

def__init__(self,no,interval):

threading.Thread.__init__(self)#在我重写__init__方法的时候要记得调用基类的__init__方法

self.no=no

self.interval=interval

defrun(self):#重写run()方法,把自己的线程函数的代码放到这里

whileTrue:

print'ThreadObject(%d),Time:%s'%(self.no,time.ctime())

time.sleep(self.interval)

deftest():

threadone=timer(1,1)#产生2个线程对象

threadtwo=timer(2,3)

Python线程编程的两种方式

threadone.start()#通过调用线程对象的.start()方法来激活线程

threadtwo.start()

if__name__=='__main__':

test()

其实thread和threading的模块中还包含了其他的很多关于多线程编程的东西,例如锁、定时器、获得激活线程列表等等,相关资料仔细参考python的文档!

以上内容为大家介绍了Python线程编程的两种方式,希望对大家有所帮助,如果想要了解更多Python相关知识,请关注IT培训机构:开发教育。http://www.baikegou.com/

内容声明:本文中引用的各种信息及资料(包括但不限于文字、数据、图表及超链接等)均来源于该信息及资料的相关主体(包括但不限于公司、媒体、协会等机构)的官方网站或公开发表的信息。部分内容参考包括:(百度百科,百度知道,头条百科,中国民法典,刑法,牛津词典,新华词典,汉语词典,国家院校,科普平台)等数据,内容仅供参考使用,不准确地方联系删除处理!本站为非盈利性质站点,本着为中国教育事业出一份力,发布内容不收取任何费用也不接任何广告!)
{if $zbp->Config('yd1125')->foot}