table.new(narray, nhash) This creates a pre-sized table, just like the C API equivalent lua_createtable(). This is useful for big tables if the final table size is known and automatic table resizing is too expensive. 预分配好数组和hash的大小,避免resize和rehash。 数组类型的