Ruby中的to_d函数将int的值转换为BigDecimal。
用法:number.to_d
参数:该函数采用要转换为BigDecimal的整数。
返回值:该函数返回int的BigDecimal值。
范例1:
# Ruby program for to_d function
require 'bigdecimal'
require 'bigdecimal/util'
# Initializing the number
num1 = 5
num2 = 10 ** 100
num3 = 1678
num4 = 189790
# Prints the int as big-decimal
puts num1.to_d
puts num2.to_d
puts num3.to_d
puts num4.to_d
输出:
0.5e1 0.1e101 0.1678e4 0.18979e6
范例2:
# Ruby program for to_d function
require 'bigdecimal'
require 'bigdecimal/util'
# Initializing the number
num1 = 5
num2 = 19**18
num3 = 2**45
num4 = 888
# Prints the int as big-decimal
puts num1.to_d
puts num2.to_d
puts num3.to_d
puts num4.to_d
输出:
0.5e1 0.104127350297911241532841e24 0.35184372088832e14 0.888e3
相关用法
- Ruby Integer integer?用法及代码示例
- Ruby Integer div()用法及代码示例
- Ruby Integer chr用法及代码示例
- Ruby Integer odd?用法及代码示例
- Ruby Integer lcm()用法及代码示例
- Ruby Integer abs()用法及代码示例
- Ruby Integer next用法及代码示例
- Ruby Integer even?用法及代码示例
- Ruby Integer gcd()用法及代码示例
- Ruby Integer succ()用法及代码示例
- Ruby Integer truncate()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby Integer to_d() function with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。