gpt4 book ai didi

ruby - 如何从 eval 内部返回?

转载 作者:数据小太阳 更新时间:2023-10-29 07:03:39 24 4
gpt4 key购买 nike

我有一个代码需要在 eval 中使用。有时我需要退出评估代码,但我的尝试会导致错误。

例如:

# expected to see 1, 2 and 5; not 3 nor 4; and no errors
eval "puts 1; puts 2; return; puts 3; puts 4" # => Error: unexpected return
puts 5

我尝试了returnendexitbreak,但都没有成功。 exit 不会引发错误,但我没有得到 5。

(注意:我知道 eval 是邪恶的,但在这种情况下我需要使用它。)

最佳答案

谢谢大家,但我找到了最适合我的问题的解决方案:

lambda do
eval "puts 1; puts 2; return; puts 3; puts 4"
end.call
puts 5

这样可以在 eval 中使用直观的 return 关键字来成功退出。

在这种情况下,我不喜欢类似条件的解决方案,因为它会迫使我(或用户)在最后添加一个 end

关于使用throw/catchbreak,我认为return关键字更直观。

关于ruby - 如何从 eval 内部返回?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6864319/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com