码迷,mamicode.com
首页 > 其他好文 > 详细

yield实现异步

时间:2017-09-07 16:07:53      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:def   time   sum   type   amount   color   mil   cas   font   

def cash_out(amount):
while amount >0:
amount-=1
yield 1
print(‘get again %s‘ %amount)
atm=cash_out(5)
print(type(atm))
print(atm.next())
print(234234)
print(atm.next())



import time
def consumer(name):
print("%s 准备吃包子啦!" %name)
while 1:
baozi = yield
print("包子[%s]来了,被[%s]吃了!" %(baozi, name))

def producer():
c = consumer(‘A‘)
c2 = consumer(‘B‘)
c.next()
c2.next()
print("老子开始准备做包子啦!")
for i in range(10):
time.sleep(1)
print("做了2个包子!")
c.send(i)
c2.send(i)
producer()
 

yield实现异步

标签:def   time   sum   type   amount   color   mil   cas   font   

原文地址:http://www.cnblogs.com/POP-w/p/7489988.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!