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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。