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