在Lua中模仿C结构

时间:2019-06-02 00:25:15

标签: lua

我试图在Lua中模仿C的结构。

我正在尝试这样做,但是没有用

struct = {}
struct[1].type = "some type"

出现

attempt to index field '?' (a nil value)

我也想这样做

struct = {}
struct[1].something[1].var[1] = "some type"

有人可以帮我吗?

对不起,如果我做错了什么事。

0 个答案:

没有答案