码迷,mamicode.com
首页 > 编程语言 > 详细

python函数之协程与面向过程编程

时间:2017-03-09 00:22:27      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:北京   class   int   span   应用   produce   producer   next   tar   

第一:协程

初步了解协程

def eater():
    print(start to eat)
    while True:
        food=yield
        print(is eating food:%s%food)

def producer():
    dog=eater()
    next(dog) # 先next一次唤醒协程函数
    #然后下面的操作都是dog.send(值)
    food1=北京烤鸭
    food2=鱼香肉丝
    dog.send(food1)
    dog.send(food2)
producer()

输出结果:
start to eat
is eating food:北京烤鸭
is eating food:鱼香肉丝

第二:协程的应用

更新中。。。

第三:面向过程编程

更新中。。。

python函数之协程与面向过程编程

标签:北京   class   int   span   应用   produce   producer   next   tar   

原文地址:http://www.cnblogs.com/ylqh/p/6523659.html

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