lua的print长度限制
工作中有遇到崩溃,最后发现是崩在lua的print中。怀疑是长度超限,于是就写测试代码来验证。local testString = "7" while(1) do if #testString > 16300 then testString = testString.."x" else tes...