Ruby 有理数 inspect()函数
inspect() 是Ruby中的一个内置函数,它以字符串的形式返回值。
语法 : rat.expect()
参数 :该函数不接受任何参数
返回值 :它以字符串的形式返回数值。
例子 1 :
# Ruby program for inspect() method
# Initialize rational number
rat1 = Rational(8, -6)
# Prints the rational number
puts rat1.inspect()
输出:
(-4/3)
例2 :
# Ruby program for inspect() method
# Initialize rational number
rat1 = Rational('1/2')
# Prints the rational number
puts rat1.inspect()
输出:
(1/2)