gpt4 book ai didi

ruby - 我们可以在 ruby​​ 中使用 'else unless' 吗?

转载 作者:太空宇宙 更新时间:2023-11-03 17:44:15 25 4
gpt4 key购买 nike

在 ruby​​ 中我们可以做类似的事情

unless something
do_this
else
do_that
end

我们也可以写else if

unless something
do_that
elsif something_else
do_this
end

但是我们可以这样写吗

if something
do_this
else unless something_else
do_that
end

当然,简单的解决方案是使用 ! 运算符。

最佳答案

没有。在这种情况下,您需要另一层嵌套。

if something
...
else
unless something_else
...
end
end

原因可能是else + unless太复杂了。

关于ruby - 我们可以在 ruby​​ 中使用 'else unless' 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44107580/

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