This is because Lua strings are immutable. The repeated string concatenation is O(N^2) while the table.concat version can be O(N).
確定! 回上一頁