当我在 lua 中检查两个条件时,哪种方式运行时间更快?
if bool and somefuntion() then
do stuff
end
或者
if bool then
if somefuntion() then
do stuff
end
end
?
当我在 lua 中检查两个条件时,哪种方式运行时间更快?
if bool and somefuntion() then
do stuff
end
或者
if bool then
if somefuntion() then
do stuff
end
end
?