迅速电脑

文章
7
资源
0
加入时间
3年0月8天

lua学习笔记---协同程序(coroutine)

对于协同程序在真正应用中怎么使用还不太明白,先写下它的使用方法供日后研究吧。直接上代码:co=coroutine.create(function(a,b)print(a+b)coroutine.yield(a*b)print(a-b)end)data1,data2= coroutine.resume(co,2,3)print(data1,data2)coroutine.re...