Ruby 数值 eql?()函数
eql?() 是Ruby中一个内置的方法,它返回一个布尔值。如果两个数字相等,它就返回真,否则就返回假。
语法 :num1.eql?(num2)
参数 :该函数需要两个要进行比较的数字。
返回值 :如果两个数字相等,则返回真,否则返回假。
例子 1 :
# Ruby program for eql?() method in Numeric
# Initialize a number
num1 = 1.7
num2 = 1.7
# Function used
res = num1.eql?(num2)
# Prints eql or not
puts res
输出:
true
例2 :
# Ruby program for eql?() method in Numeric
# Initialize a number
num1 = 15
num2 = 19
# Function used
res = num1.eql?(num2)
# Prints eql or not
puts res
输出:
false