
编程语言
文章平均质量分 58
yoz
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Lua学习笔记之for
Lua中的迭代器与泛型for转载 2017-07-12 11:34:27 · 262 阅读 · 0 评论 -
Lua学习笔记之Expressions
Both function calls and vararg expressions can result in multiple values. If an expression is used as a statement (only possible for function calls (see §2.4.6)), then its return list is adjusted to转载 2017-07-04 19:33:18 · 299 阅读 · 0 评论 -
Lua学习笔记之Coroutine
2.11 – Coroutines Lua supports coroutines, also called collaborative multithreading. A coroutine in Lua represents an independent thread of execution. Unlike threads in multithread systems, however转载 2017-07-04 20:59:26 · 423 阅读 · 0 评论 -
Lua学习笔记之function type
Here we list all functions and types from the C API in alphabetical order. Each function has an indicator like this:[-o, +p, x] The first field, o, is how many elements the function pops from转载 2017-07-05 10:33:52 · 507 阅读 · 0 评论 -
Lua学习笔记之table
零散知识点记录 table的拷贝是浅拷贝,若要深拷贝A=B则需要遍历B中的元素,并将其一一对应赋值给A。原创 2017-07-07 11:16:55 · 264 阅读 · 0 评论