我使用下面的代码来检查一个变量是否不为零
if(discount != nil && discount != 0)
...
end
还有更好的办法吗?
我使用下面的代码来检查一个变量是否不为零
if(discount != nil && discount != 0)
...
end
还有更好的办法吗?
当前回答
if (discount||0) != 0
#...
end
其他回答
unless [nil, 0].include?(discount) # ... end
另一种解决方案是使用Refinements,如下所示:
module Nothingness
refine Numeric do
alias_method :nothing?, :zero?
end
refine NilClass do
alias_method :nothing?, :nil?
end
end
using Nothingness
if discount.nothing?
# do something
end
您可以将空行转换为整数值并检查零?。
"".to_i.zero? => true
nil.to_i.zero? => true
unless discount.nil? || discount == 0 # ... end
从Ruby 2.3.0开始,您可以将安全导航操作符(&.)与数字#非零?结合使用。&。如果实例为nil且非零,则返回nil ?—如果数字为0:
if discount&.nonzero?
# ...
end
或后缀:
do_something if discount&.nonzero?