gpt4 book ai didi

ruby - 如何在我的 ruby​​ 类中重构这些条件?

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

这是我的方法。它检查文件是否可用。我该如何干燥它?

@@filepath = nil

def self.file_usable?
return false unless @@filepath
return false unless File.exists?(@@filepath)
return false unless File.readable?(@@filepath)
return false unless File.writable?(@@filepath)
return true
end

我应该使用某种循环吗?

最佳答案

def self.file_usable?
@@filepath and File.exists?(@@filepath) and File.readable?(@@filepath) and File.writable?(@@filepath)
end

关于ruby - 如何在我的 ruby​​ 类中重构这些条件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8284323/

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