当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby Numeric nonzero?用法及代码示例


nonzero?()是Ruby中的一个内置方法,如果数字非零,则返回self,否则返回nil。

用法:num.nonzero?()

参数:该函数需要一个要检查的数字。


返回值:返回self或nil。

例子1

# Ruby program for nonzero? 
# method in Numeric 
  
# Initialize a number  
num1 = 12
  
# Prints if nonzero or not  
puts num1.nonzero?()

输出

12

例子2

# Ruby program for nonzero? 
# method in Numeric 
  
# Initialize a number  
num1 = 0
  
# Prints if nonzero or not  
puts num1.nonzero?()

输出




相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Numeric nonzero? function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。