类 String

公共实例方法

to_d → bigdecimal 点击切换源代码

返回将 str 中前导字符解释为 BigDecimal 的结果。

require 'bigdecimal'
require 'bigdecimal/util'

"0.5".to_d             # => 0.5e0
"123.45e1".to_d        # => 0.12345e4
"45.67 degrees".to_d   # => 0.4567e2

另请参阅 Kernel.BigDecimal

# File bigdecimal-3.1.8/lib/bigdecimal/util.rb, line 72
def to_d
  BigDecimal.interpret_loosely(self)
end