Ruby 数值 real()函数 real() 是Ruby中一个内置的方法,用于返回给定数字的实数部分。 语法 :num.real() 参数 :该函数需要返回实数部分的数字。 返回值 :它返回复数的实数部分。 例子 1 : # Ruby program for real() # method in Numeric # Initialize a number num = Complex(10, 6) # Prints the real part puts num.real()RubyCopy 输出: 10RubyCopy 例2 : # Ruby program for real() # method in Numeric # Initialize a number num = Complex(18, 16) # Prints the real part puts num.real()RubyCopy 输出: 18RubyCopy