Ruby 有理数 to_f()函数
to_f() 是Ruby中的一个内置函数,用于返回浮点数。
语法 : rat.to_f()
参数 : 该函数不接受任何参数
返回值 : 它返回浮动值
例子 1 :
#Ruby program for to_f() method
#Initialize rational number
rat1 = Rational(9, -2)
#Prints the rational number
puts rat1.to_f()
输出:
-4.5
例2 :
#Ruby program for to_f() method
#Initialize rational number
rat1 = Rational(7)
#Prints the rational number
puts rat1.to_f()
输出:
7.0