Float#to_i()是一个浮点类方法,它返回浮点值的整数表示形式。
用法:float.to_i()
参数:浮点值作为参数
返回:浮点值的整数表示。
示例1:
# Ruby code for to_i() method
# declaring float value
a = 0.756567
# declaring float value
b = 2797999.011
# converting to integer
puts "Integer a : #{a.to_i}\n\n"
# converting to integer
puts "Integer b : #{b.to_i}\n\n"
输出:
Integer a : 0 Integer b : 2797999
示例2:
# Ruby code for to_i() method
# declaring float value
a = 0.767
# declaring float value
b = 2999.011
# converting to integer
puts "Integer a : #{a.to_i}\n\n"
# converting to integer
puts "Integer b : #{b.to_i}\n\n"
输出:
Integer a : 0 Integer b : 2999
相关用法
- Ruby Float nan?()用法及代码示例
- Ruby Float eql()用法及代码示例
- Ruby Float zero?()用法及代码示例
- Ruby Float quo()用法及代码示例
- Ruby Float arg()用法及代码示例
- Ruby Float angle()用法及代码示例
- Ruby Float phase()用法及代码示例
- Ruby Float positive()用法及代码示例
- Ruby Float to_r()用法及代码示例
- Ruby Float floor()用法及代码示例
- Ruby Float ceil()用法及代码示例
- Ruby Float coerce()用法及代码示例
- Ruby Float round()用法及代码示例
- Ruby Float numerator()用法及代码示例
- Ruby Float modulo()用法及代码示例
注:本文由纯净天空筛选整理自mayank5326大神的英文原创作品 Ruby | Float to_i() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。