如何获取lua表中的程序和功能

发布于 2024-12-02 01:53:26 字数 160 浏览 0 评论 0原文

从下面的

控制面板\程序\程序和功能

需要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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

新人笑 2024-12-09 01:53:26
table = {}

for i = 1, 10 do
   table[i] = {}
   for j = 1, 10
      table[i][j] = i+j
   end
end

Lua 中的多维数组只是另一个表中的多个表:),每一行/列一个。

哦,另一种选择是通过一些简单的算术伪造多维数组,例如: table[x+rowlen*y]

table = {}

for i = 1, 10 do
   table[i] = {}
   for j = 1, 10
      table[i][j] = i+j
   end
end

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]

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文