gpt4 book ai didi

ruby - if..else..end 的快捷方式

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

有没有类似这样的代码的快捷方式?

def test
obj = get_from_somewhere()
if obj
true
else
false
end
end

在 Python 中,我可以这样做:

return True if obj else False

最佳答案

一个常见的 Ruby 习惯用法是:

def test
!!get_from_somewhere
end

double bang将一个对象变成它的“ bool 等价物”:

object = 'foo'
!object
# => false
!!object
# => true

请注意,在 Ruby 中,与 Python 不同,只有 falsenil 在 bool 上下文中计算为 false,例如:

!!0
# => true

关于ruby - if..else..end 的快捷方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18915078/

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