• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    Lua之wrap函数用法示例

    wrap和Create差不多,都是去创建一个coroutine,有些区别:

    1,wrap不会通过resume去得到第一个返回值(错误信息)
    2,在创建完之后,直接调用函数,转到coroutine,而create却要resume才能转到coroutine。
    3,wrap不能查看状态。

    例子代码:

    复制代码 代码如下:

    do 
        function createWrap() 
            return coroutine.wrap(function(x) 
                                        print("Hello", x); 
                                        coroutine.yield(); 
                                        print("continue") 
                                    end); 
        end 
     
        coA = createWrap(); --get the function, resum the coroutine 
        coA(3); 
        coA(3); --call the global function, , resum the coroutine 
     
    end

    上一篇:Lua中的__index方法详解
    下一篇:Lua之协同程序coroutine代码实例
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    Lua之wrap函数用法示例 Lua,之,wrap,函数,用法,示例,