本文簡要介紹ruby語言中 Numeric.self % other
的用法。
用法
self % other → real_numeric
也別名為:modulo
返回 self
模 other
作為實數。
在核心和標準庫類中,隻有 Rational
使用此實現。
對於 Rational r
和實數 n
,這些表達式是等價的:
c % n
c-n*(c/n).floor
c.divmod(n)[1]
見 Numeric#divmod
。
例子:
r = Rational(1, 2) # => (1/2)
r2 = Rational(2, 3) # => (2/3)
r % r2 # => (1/2)
r % 2 # => (1/2)
r % 2.0 # => 0.5
r = Rational(301,100) # => (301/100)
r2 = Rational(7,5) # => (7/5)
r % r2 # => (21/100)
r % -r2 # => (-119/100)
(-r) % r2 # => (119/100)
(-r) %-r2 # => (-21/100)
Numeric#modulo
是 Numeric#%
的別名。
相關用法
- Ruby Numeric.step用法及代碼示例
- Ruby Numeric.i用法及代碼示例
- Ruby Numeric.eql?用法及代碼示例
- Ruby Numeric.coerce用法及代碼示例
- Ruby Numeric.magnitude用法及代碼示例
- Ruby Numeric.to_int用法及代碼示例
- Ruby Numeric.remainder用法及代碼示例
- 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.self % other。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。