當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Ruby Numeric.coerce用法及代碼示例


本文簡要介紹ruby語言中 Numeric.coerce 的用法。

用法

coerce(other) → array

返回一個 2 元素數組,其中包含兩個數字元素,由兩個操作數 selfother 組成,具有共同的兼容類型。

在核心和標準庫類中, 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-lang.org大神的英文原創作品 Numeric.coerce。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。