Lua——table.insert

table.insert(table,index,value) 在table 表中指定的index位置插入value index 能夠不傳入值, 默認爲最後一位web tables = {"a", "b", "c", "d" } table.insert(tables, "e") print(unpack(tables)) -- a b c d e table.insert(tables, 3
相關文章
相關標籤/搜索