如何获取lua表中的程序和功能
从下面的
控制面板\程序\程序和功能
需要Lua表中的列表视图
假设安装的程序的名称,其版本和大小等。
问题是Lua似乎不接受像二维数组那样的两个参数
使用Lua表可以存储字符串列表,
但是如何存储二维数组呢?
from the below
Control Panel\Programs\Programs and Features
Need the List view in the Lua table
Suppose the Name of the Program installed , its version and size etc.
Issue is Lua seems to doesn't takes two argument like two dimension array
Using Lua table you can store List of string
But how to store a two dimension array ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Lua 中的多维数组只是另一个表中的多个表:),每一行/列一个。
哦,另一种选择是通过一些简单的算术伪造多维数组,例如: table[x+rowlen*y]
A multidimensional array in Lua is simply multiple tables in another :), one for each row/col.
Oh and another option is faking a multidimensional array through some simple arithmatic, something like: table[x+rowlen*y]