Lua之wrap函数用法示例
程序员文章站
2022-04-09 22:50:09
wrap和create差不多,都是去创建一个coroutine,有些区别:
1,wrap不会通过resume去得到第一个返回值(错误信息)
2,在创建完之后,直接调用函...
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
推荐阅读
-
CI框架源码解读之URI.php中_fetch_uri_string()函数用法分析,ciuristring
-
CI框架源码解读之URI.php中_fetch_uri_string()函数用法分析,ciuristring
-
Lua中访问table里函数的方法示例
-
Lua select函数用法实例
-
Lua UnPack函数用法实例
-
CI框架源码解读之URI.php中_fetch_uri_string()函数用法分析_php实例
-
php源码分析之DZX1.5随机数函数random用法
-
nodejs异步编程基础之回调函数用法分析
-
SQL Server中row_number函数的常见用法示例详解
-
JS函数进阶之prototy用法实例分析