pcall可以返回被调用函数的值而不是 bool 结果为true/false吗?

例如

function f()
return 'some text'
end

print(tostring(pcall(f)))

打印将仅显示true或false,而不显示f返回的值

最佳答案

tostring仅选择第一个参数。

a,b = pcall(f)
print(b) --> 'some text'

09-12 05:57