类 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/lib/bigdecimal/util.rb, line 72 def to_d BigDecimal.interpret_loosely(self) end