Ruby 数值 positive?函数

Ruby 数值 positive?函数

positive?() 是Ruby中一个内置的方法,它返回一个布尔值。如果数字是正数,它就返回真,否则就返回假。

语法 :num.positive?()

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

返回值 :它返回一个布尔值。

例子 1 :

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

输出:

true

例2 :

# Ruby program for positive?()
# method in Numeric
 
# Initialize a number
num1 = -15
 
# Prints positive or not
puts num1.positive?()

输出:

false

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程