随笔分类 - lua
摘要:python a={'a':123}b={'b':456}a['x']=bprint(a)b={'b':789}print(a) {'a': 123, 'x': {'b': 456}}{'a': 123, 'x': {'b': 456}} lua local a={} a['a']=123 loca
阅读全文
摘要:Lua大量字符串拼接方式效率对比及原因分析_AaronChan的博客-CSDN博客_lua字符串拼接消耗 https://blog.csdn.net/qq_26958473/article/details/79392222
阅读全文
摘要:LuaJIT Sponsorship Program http://luajit.org/sponsors.html Sponsorship for allocation/store sinking A corporate sponsor, who wishes to remain anonymou
阅读全文
摘要:New Garbage Collector http://wiki.luajit.org/New-Garbage-Collector GC Algorithms This is a short overview of the different GC algorithms used in Lua 5
阅读全文
摘要:2.5 – Garbage Collection 自动垃圾回收 Lua 5.3 Reference Manual http://www.lua.org/manual/5.3/manual.html#2.1 2.5 – Garbage Collection Lua performs automatic
阅读全文
摘要:C/C++和Lua是如何进行通信的? http://www.luachina.cn/?post=38 2015-12-28 为了实现Lua和其他语言之间的通信,Lua虚拟机为C/C++提供了两个特性: 一,Lua_State状态机 lua_State主要是管理一个lua虚拟机的执行环境, 一个lua
阅读全文
摘要:一门简单的脚本语言嵌入到应用程序中 Lua游戏脚本热更新机制 http://www.luachina.cn/?post=41
阅读全文

浙公网安备 33010602011771号