当前位置: 首页 > SEO学院SEO知识

Python线程中对方法的应用教程

来源:未知 浏览量:139次

jion加上还有一个后果就是 子线程和主线程绑定在一起 直到子线程运行完毕定安县SEO 直到子线程运行完毕才开始执行子线程。

代码 有join:

Python线程中对join方法的运用的教程

#-*- coding: UTF-8 -*- import threading from time import sleep def fun():

在CODE上查看代码片派生到我的代码片

span /spani= 5 while i 0: print(111111) sleep(10)

在CODE上查看代码片派生到我的代码片

Python线程中对join方法的运用的教程

输出:pre name=”code” class=”python”111111 输完之后 才输出 span style=”font-family: Arial, Helvetica, sans-serif;”aaaaaaa /span

在CODE上查看代码片派生到我的代码片

代码: 无join

在CODE上查看代码片派生到我的代码片

#-*- coding: UTF-8 -*- import threading from time import sleep def fun(): while True: print(111111) sleep(10) if __name__ == '__main__': a = threading.Thread(target = fun) a.start() while True: print('aaaaaaa') sleep(1)

在CODE上查看代码片派生到我的代码片

展开全部内容