Ruby 数值 to_int()函数
to_int() 是Ruby中一个内置的方法,用于返回给定数字的整数部分。
语法 :num.to_int()
参数 :该函数需要返回整数部分的数字。
返回值 :它返回整数部分。
例子 1 :
# Ruby program for to_int()
# method in Numeric
# Initialize a number
num1 = 15.778
# Prints the integer part
puts num1.to_int()
输出:
15
例2 :
# Ruby program for to_int()
# method in Numeric
# Initialize a number
num1 = -19.86
# Prints the integer part
puts num1.to_int()
输出:
-19