Lua - table.insert not working
Why isn't t:insert(9)
working in Lua?
t = {1,2,3}
table.insert(t, 9) -- works (appends 9 to end of table t)
t:insert(9) -- does NOT work
I thought in general
a.f(a,x)
is equalivant to a:f(x)
in Lua
While it's true that a:f(x)
is simply syntactic sugar for a.f(a,x)
that second syntax is not what you have there. Think it through backwards:
The function call you tried is t:insert(9)
So the syntax rule you stated would be t.insert(t, 9)
But the working function call is table.insert(t, 9)
See how the last two aren't the same? So the answer to your question is that insert() isn't a function contained in t
, it's in "table".
Since the table
methods haven't been associated with t
, you either have to call them directly through the table.insert
syntax, or define the metatable on t
to be table
, e.g.:
> t = {1,2,3}
> setmetatable(t, {__index=table})
> t:insert(9)
> print (t[4])
9
You're trying to call an entry in your table called insert, however, in table t, there is none. If you want it to work, what you could do is to set the insert entry to table.insert
t = {insert = table.insert, 1, 2, 3}
t:insert(9)
print(t[4]) -- 9, as you'd expect
精彩评论