导语:
本文主要介绍了关于Python如何生成线程的相关知识,包括python释放线程,以及python创建线程的方法这些编程知识,希望对大家有参考作用。
Python中有两个线程模块,thread和threading,threading是thread的升级版。线程更强大。
创建线程有3种方法:
1、thread模块的start_new_thread函数
2、继承自threading.Thread模块
3、用theading.Thread直接返回一个thread对象,然后运行它的start方法
方法一、thread模块的start_new_thread函数
其函数原型:
start_new_thread(function,atgs[,kwargs])
其参数含义如下:
function: 在线程中执行的函数名
args:元组形式的参数列表。
kwargs: 可选参数,以字典的形式指定参数(即对一些参数进行指定初始化)
代码
import thread
def hello(id = 0, interval = 2):
for i in filter(lambda x: x % interval == 0, range(10)):
print "Thread id : %d, time is %d\n" % (id, i)
if __name__ == "__main__":
#thread.start_new_thread(hello, (1,2)) 这种调用形式也是可用的
#thread.start_new_thread(hello, (2,4))
thread.start_new_thread(hello, (), {"id": 1})
thread.start_new_thread(hello, (), {"id": 2})
方法二:继承自threading.Thread模块
注意:必须重写run函数,调用start方法运行
import threading
class MyThread(threading.Thread):
def __init__(self, id, interval):
threading.Thread.__init__(self)
self.id = id
self.interval = interval
def run(self):
for x in filter(lambda x: x % self.interval == 0, range(10)):
print "Thread id : %d time is %d \n" % (self.id, x)
if __name__ == "__main__":
t1 = MyThread(1, 2)
t2 = MyThread(2, 4)
t1.start()
t2.start()
t1.join()
t2.join()
方法三:使用 theading.Thread 直接返回一个线程对象,然后运行它的 start 方法
import threading
def hello(id, times):
for i in range(times):
print "hello %s time is %d\n" % (id , i)
if __name__ == "__main__":
t = threading.Thread(target=hello, args=("hawk", 5))
t.start()
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ datetime在python中获取时间和格式08/16
- ♥ python如何读取配置文件09/10
- ♥ python如何定义列表08/13
- ♥ Python写字典形式的csv文件实现步骤12/02
- ♥ python中OpenCV的人脸检测功能11/17
- ♥ python3.6有什么优势11/28
内容反馈