threading用法

更新时间:01-23 教程 由 傲骨 分享

threading用法?

如果要让一个 Thread 对象启动,调用它的 start() 方法就好了。

下面是代码示例。

import threading

import time

def test():

for i in range(5):

print('test ',i)

time.sleep(1)

thread = threading.Thread(target=test)

thread.start()

for i in range(5):

print('main ', i)

time.sleep(1)

上面代码很简单,在主线程上打印 5 次,在一个子线程上打印 5 次。

声明:关于《threading用法》以上内容仅供参考,若您的权利被侵害,请联系13825271@qq.com
本文网址:http://www.25820.com/tutorial/14_2188540.html