本文簡要介紹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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。