随笔分类 -  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 阅读全文
posted @ 2026-01-12 17:22 papering 阅读(24) 评论(0) 推荐(0)
摘要:Lua大量字符串拼接方式效率对比及原因分析_AaronChan的博客-CSDN博客_lua字符串拼接消耗 https://blog.csdn.net/qq_26958473/article/details/79392222 阅读全文
posted @ 2020-12-03 11:36 papering 阅读(1664) 评论(0) 推荐(0)
摘要:LuaJIT Sponsorship Program http://luajit.org/sponsors.html Sponsorship for allocation/store sinking A corporate sponsor, who wishes to remain anonymou 阅读全文
posted @ 2018-12-25 13:57 papering 阅读(515) 评论(0) 推荐(0)
摘要: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 阅读全文
posted @ 2018-12-25 13:51 papering 阅读(311) 评论(0) 推荐(0)
摘要: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 阅读全文
posted @ 2018-12-25 11:20 papering 阅读(699) 评论(0) 推荐(0)
摘要:C/C++和Lua是如何进行通信的? http://www.luachina.cn/?post=38 2015-12-28 为了实现Lua和其他语言之间的通信,Lua虚拟机为C/C++提供了两个特性: 一,Lua_State状态机 lua_State主要是管理一个lua虚拟机的执行环境, 一个lua 阅读全文
posted @ 2018-11-23 08:59 papering 阅读(562) 评论(0) 推荐(0)
摘要:一门简单的脚本语言嵌入到应用程序中 Lua游戏脚本热更新机制 http://www.luachina.cn/?post=41 阅读全文
posted @ 2018-06-23 18:46 papering 阅读(233) 评论(0) 推荐(0)