Ruby 有理数 to_r()函数
to_r() 是Ruby中的一个内置函数,用来返回它自己的值。
语法 : rat.to_r()
参数 :该函数不接受任何参数
返回值 : 它返回自己的值。
例子 1 :
#Ruby program for to_r() method
#Initialize rational number
rat1 = Rational(18, -4)
#Prints the rational number
puts rat1.to_r()
输出:
-9/2
例2 :
#Ruby program for to_r() method
#Initialize rational number
rat1 = Rational(7)
#Prints the rational number
puts rat1.to_r()
输出:
7/1