本文简要介绍ruby语言中 Rational.to_d
的用法。
用法
to_d(precision) → bigdecimal
以 BigDecimal
的形式返回值。
所需的precision
参数用于确定结果的有效位数。
require 'bigdecimal'
require 'bigdecimal/util'
Rational(22, 7).to_d(3) # => 0.314e1
另见 BigDecimal::new
。
相关用法
- Ruby Rational.to_f用法及代码示例
- Ruby Rational.to_s用法及代码示例
- Ruby Rational.to_r用法及代码示例
- Ruby Rational.to_i用法及代码示例
- Ruby Rational.truncate用法及代码示例
- Ruby Rational.inspect用法及代码示例
- Ruby Rational.rational <=>用法及代码示例
- Ruby Rational.rat ** numeric用法及代码示例
- Ruby Rational.round用法及代码示例
- Ruby Rational.denominator用法及代码示例
- Ruby Rational.rationalize用法及代码示例
- Ruby Rational.rat * numeric用法及代码示例
- Ruby Rational.ceil用法及代码示例
- Ruby Rational.rat / numeric用法及代码示例
- Ruby Rational.floor用法及代码示例
- Ruby Rational.fdiv用法及代码示例
- Ruby Rational.magnitude用法及代码示例
- Ruby Rational.rat + numeric用法及代码示例
- Ruby Rational.abs用法及代码示例
- Ruby Rational.quo用法及代码示例
- Ruby Rational.numerator用法及代码示例
- Ruby Rational.rat - numeric用法及代码示例
- Ruby Rational.rat ==用法及代码示例
- Ruby Rational to_i()用法及代码示例
- Ruby Rational quo()用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 Rational.to_d。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。