jion加上还有一个后果就是 子线程和主线程绑定在一起 直到子线程运行完毕定安县SEO 直到子线程运行完毕才开始执行子线程。
代码 有join:
#-*- coding: UTF-8 -*- import threading from time import sleep def fun():在CODE上查看代码片派生到我的代码片
span /spani= 5 while i 0: print(111111) sleep(10)在CODE上查看代码片派生到我的代码片
输出: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上查看代码片派生到我的代码片