摘要: #!/usr/bin/env python # -*-coding:utf-8-*- import threading import time condition = threading.Condition() products = 0 class Producer(threading.Thread 阅读全文
posted @ 2021-07-05 13:16 乔小生1221 阅读(222) 评论(0) 推荐(0) 编辑
摘要: import time import threading def printNum(a): print ('num:',a) time.sleep(5) def ThreadTest(i): return threading.Thread(target=printNum, args=(999,)) 阅读全文
posted @ 2021-07-05 13:09 乔小生1221 阅读(108) 评论(0) 推荐(0) 编辑
摘要: #-*-coding:utf-8-*- import threading import time event = threading.Event() def func(): # 等待事件,进入等待阻塞状态 print( '%s wait for event...' % threading.curre 阅读全文
posted @ 2021-07-05 11:29 乔小生1221 阅读(438) 评论(0) 推荐(0) 编辑