2016年8月15日
摘要: 1 local threads = {} 2 function test() 3 for i=1,10,1 do 4 coroutine.yield(i); 5 end 6 end 7 local co = nil; 8 9 for i=1,5,1 do 10 co = coroutine.create(test) 11 ta... 阅读全文
posted @ 2016-08-15 13:53 魔天天 阅读(253) 评论(0) 推荐(0) 编辑