本文简要介绍ruby语言中 Numeric.coerce
的用法。
用法
coerce(other) → array
返回一个 2 元素数组,其中包含两个数字元素,由两个操作数 self
和 other
组成,具有共同的兼容类型。
在核心和标准库类中, Integer
、 Rational
和 Complex
使用此实现。
例子:
i = 2 # => 2
i.coerce(3) # => [3, 2]
i.coerce(3.0) # => [3.0, 2.0]
i.coerce(Rational(1, 2)) # => [0.5, 2.0]
i.coerce(Complex(3, 4)) # Raises RangeError.
r = Rational(5, 2) # => (5/2)
r.coerce(2) # => [(2/1), (5/2)]
r.coerce(2.0) # => [2.0, 2.5]
r.coerce(Rational(2, 3)) # => [(2/3), (5/2)]
r.coerce(Complex(3, 4)) # => [(3+4i), ((5/2)+0i)]
c = Complex(2, 3) # => (2+3i)
c.coerce(2) # => [(2+0i), (2+3i)]
c.coerce(2.0) # => [(2.0+0i), (2+3i)]
c.coerce(Rational(1, 2)) # => [((1/2)+0i), (2+3i)]
c.coerce(Complex(3, 4)) # => [(3+4i), (2+3i)]
如果任何类型转换失败,则引发异常。
相关用法
- Ruby Numeric.i用法及代码示例
- Ruby Numeric.eql?用法及代码示例
- Ruby Numeric.self % other用法及代码示例
- Ruby Numeric.magnitude用法及代码示例
- Ruby Numeric.to_int用法及代码示例
- Ruby Numeric.remainder用法及代码示例
- Ruby Numeric.step用法及代码示例
- Ruby Numeric.modulo用法及代码示例
- Ruby Numeric.divmod用法及代码示例
- Ruby Numeric.nonzero?用法及代码示例
- Ruby Numeric.integer?用法及代码示例
- Ruby Numeric.abs用法及代码示例
- Ruby Numeric truncate()用法及代码示例
- Ruby Numeric rect()用法及代码示例
- Ruby Numeric angle()用法及代码示例
- Ruby Numeric phase()用法及代码示例
- Ruby Numeric div()用法及代码示例
- Ruby Numeric integer()用法及代码示例
- Ruby Numeric positive?用法及代码示例
- Ruby Numeric conjugate()用法及代码示例
- Ruby Numeric finite?()用法及代码示例
- Ruby Numeric abs()用法及代码示例
- Ruby Numeric remainder()用法及代码示例
- Ruby Numeric ceil()用法及代码示例
- Ruby Numeric abs2()用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 Numeric.coerce。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。