获取资料

Lua热更新技术视频课程(中级篇)

Lua热更新技术视频课程(中级篇)

—/Lua热更新技术视频课程(中级篇)(ID-13592)/

1-1 lua中级篇_课程概述.mp4 37.10M

1-10 lua中级篇_函数进阶_递归算法中尾调用的价值.mp4 37.36M

1-11 lua中级篇_函数进阶_函数尾调用括号作用.mp4 28.34M

1-12 lua中级篇_函数进阶_函数本质_一般函数定义与理解.mp4 26.61M

1-13 lua中级篇_函数进阶_函数本质_函数存储在表中.mp4 33.13M

1-2 lua中级篇_函数进阶_实参简化.mp4 32.11M

1-3 lua中级篇_函数进阶_可变参数(A).mp4 32.11M

1-4 lua中级篇_函数进阶_可变参数(B).mp4 42.38M

1-5 lua中级篇_函数进阶_可变参数(C).mp4 41.91M

1-6 lua中级篇_函数进阶_函数库之数学函数.mp4 40.72M

1-7 lua中级篇_函数进阶_函数库之操作系统库.mp4 26.66M

1-8 lua中级篇_函数进阶_自定义开发随机数函数.mp4 32.60M

1-9 lua中级篇_函数进阶_函数尾调用定义.mp4 27.93M

2-1 lua中级篇_函数进阶_闭包_闭包的定义.mp4 33.81M

2-10 lua中级篇_函数进阶_unpack函数讲解.mp4 31.53M

2-2 lua中级篇_函数进阶_闭包_带参闭包.mp4 23.75M

2-3 lua中级篇_函数进阶_闭包_多内嵌函数的闭包.mp4 28.75M

2-4 lua中级篇_函数进阶_闭包_带参数的内嵌函数.mp4 19.50M

2-5 lua中级篇_函数进阶_闭包_闭包具备多个实例.mp4 24.67M

2-6 lua中级篇_函数进阶_闭包_自定义迭代器的应用.mp4 34.44M

2-7 lua中级篇_函数进阶_模块_模块的概念与定义.mp4 26.70M

2-8 lua中级篇_函数进阶_l文件互调用_require关键字.mp4 36.34M

2-9 lua中级篇_函数进阶_函数的前置声明语法.mp4 22.57M

3-1 lua中级篇_字符串进阶_字符与Ascii码转换.mp4 26.77M

3-10 lua中级篇_字符串进阶_综合案例_游戏账号合法性检查(B).mp4 28.50M

3-11 lua中级篇_字符串进阶_综合案例_数字转汉字示例.mp4 30.80M

3-12 lua中级篇_字符串进阶_字符串不变性原理(A).mp4 42.05M

3-13 lua中级篇_字符串进阶_字符串不变性原理(B).mp4 27.28M

3-2 lua中级篇_字符串进阶_字符串的模式匹配定义.mp4 24.51M

3-3 lua中级篇_字符串进阶_查找日期模式匹配示例.mp4 26.31M

3-4 lua中级篇_字符串进阶_模式匹配_match函数.mp4 31.04M

3-5 lua中级篇_字符串进阶_模式匹配_find函数.mp4 23.51M

3-6 lua中级篇_字符串进阶_模式匹配_gmatch函数(A).mp4 21.10M

3-7 lua中级篇_字符串进阶_模式匹配_gmatch函数(B).mp4 32.63M

3-8 lua中级篇_字符串进阶_模式匹配_gsub函数.mp4 29.43M

3-9 lua中级篇_字符串进阶_综合案例_游戏账号合法性检查(A).mp4 32.88M

4-1 lua中级篇_Table进阶_表的本质.mp4 40.51M

4-2 lua中级篇_Table进阶_矩阵(A).mp4 19.32M

4-3 lua中级篇_Table进阶_矩阵(B).mp4 26.78M

4-4 lua中级篇_Table进阶_矩阵(C).mp4 24.81M

4-5 lua中级篇_Table进阶_定义链表构造器.mp4 27.07M

4-6 lua中级篇_Table进阶_链表的迭代输出与测试.mp4 27.11M

5-1 lua中级篇_元表_元表(MetaTable)概念讲解.mp4 30.28M

5-10 lua中级篇_元表_newindex中rawset函数作用.mp4 31.89M

5-11 lua中级篇_元表_newindex元方法超简化示例.mp4 35.85M

5-12 lua中级篇_元表_Call元方法定义与运用.mp4 34.03M

5-2 lua中级篇_元表_表的加法元表定义与测试.mp4 37.68M

5-3 lua中级篇_元表_表的减法元表定义与测试.mp4 35.82M

5-4 lua中级篇_元表_库定义元方法toString函数.mp4 34.31M

5-5 lua中级篇_元表_运行与测试toString元方法.mp4 26.60M

5-6 lua中级篇_元表_保护元表的metatable元方法.mp4 35.90M

5-7 lua中级篇_元表_表访问Index元方法.mp4 33.50M

5-8 lua中级篇_元表_元方法的简化编写.mp4 26.50M

5-9 lua中级篇_元表_newindex元方法定义.mp4 27.67M

6-1 lua中级篇_OOP_Table模拟类的基本机制回顾.mp4 29.85M

6-2 lua中级篇_OOP_实现OOP基础的继承关系.mp4 36.06M

6-3 lua中级篇_OOP_OOP继承机制的优化算法(A).mp4 33.42M

6-4 lua中级篇_OOP_OOP继承机制的优化算法(B).mp4 38.38M

7-1 lua中级篇_协同_定义协同程序.mp4 23.31M

7-10 lua中级篇_协同_生产与消费者经典案例(A).mp4 28.96M

7-11 lua中级篇_协同_生产与消费者经典案例(B).mp4 34.17M

7-2 lua中级篇_协同_查看协同状态.mp4 29.90M

7-3 lua中级篇_协同_使用wrap函数定义协同.mp4 36.74M

7-4 lua中级篇_协同_协同挂起与状态检查.mp4 28.93M

7-5 lua中级篇_协同_协同的参数传递.mp4 37.56M

7-6 lua中级篇_协同_多协同程序同时运行示例(A).mp4 27.76M

7-7 lua中级篇_协同_多协同程序同时运行示例(B).mp4 26.77M

7-8 lua中级篇_协同_协同的状态管理.mp4 43.18M

7-9 lua中级篇_协同_yield返回数值技术.mp4 27.43M

8-1 lua中级篇_IO操作_文件的只读操作.mp4 35.76M

8-2 lua中级篇_IO操作_文本文件读取多行数据.mp4 20.95M

8-3 lua中级篇_IO操作_文本文件的覆盖写入.mp4 25.79M

8-4 lua中级篇_IO操作_文本文件的追加写入.mp4 25.14M

9-1 lua中级篇_调试与运行_loadfile函数.mp4 36.47M

9-2 lua中级篇_调试与运行_测试loadfile函数.mp4 36.41M

9-3 lua中级篇_调试与运行_dofile函数与优缺点分析.mp4 29.03M

9-4 lua中级篇_调试与运行_loadstring函数(A).mp4 29.12M

9-5 lua中级篇_调试与运行_loadstring函数(B).mp4 22.70M

9-6 lua中级篇_调试与运行_引发异常语句.mp4 27.21M

9-7 lua中级篇_调试与运行_asset函数应用举例.mp4 21.28M

9-8 lua中级篇_调试与运行_错误捕获函数.mp4 36.01M

9-9 lua中级篇_调试与运行_垃圾收集机制(课程结束).mp4 26.97M

评论0

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址