gpt4 book ai didi

Ruby one liner for method undefined or nil

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

我很好奇是否有更短的方法来检查对象上是否定义了方法,如果是,则检查它是否为 nil。我试过:

if !obj.respond_to?(:meth) || obj.meth.nil?

但是看起来又长又丑。

最佳答案

快速而肮脏但简洁:

unless (obj.meth rescue nil)
...
end

如果将 meth 发送到 obj 失败(例如,因为缺少方法),表达式将取值 nil

当然这隐藏了 meth 中的各种错误。

关于Ruby one liner for method undefined or nil,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29433697/

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