我对 lua 很陌生,我的计划是创建一个表。这个表(我称之为测试)有 200 个条目 - 每个条目都有相同的子条目(在这个例子中子条目金钱和年龄):
这是一种伪代码:
table test = {
Entry 1: money=5 age=32
Entry 2: money=-5 age=14
...
Entry 200: money=999 age=72
}
我怎么能用 lua 写这个?有没有可能?另一种方法是,我将每个子条目写为一个表:
table money = { }
table age = { }
但对我来说,这不是一个好方法,所以也许你可以帮助我。
编辑:
这个问题Table inside a table是相关的,但我不能写这个 200x。