本文简要介绍ruby语言中 Numeric.remainder
的用法。
用法
remainder(other) → real_number
返回 self
除以 other
后的余数。
在核心和标准库类中,只有 Float
和 Rational
使用此实现。
例子:
11.0.remainder(4) # => 3.0
11.0.remainder(-4) # => 3.0
-11.0.remainder(4) # => -3.0
-11.0.remainder(-4) # => -3.0
12.0.remainder(4) # => 0.0
12.0.remainder(-4) # => 0.0
-12.0.remainder(4) # => -0.0
-12.0.remainder(-4) # => -0.0
13.0.remainder(4.0) # => 1.0
13.0.remainder(Rational(4, 1)) # => 1.0
Rational(13, 1).remainder(4) # => (1/1)
Rational(13, 1).remainder(-4) # => (1/1)
Rational(-13, 1).remainder(4) # => (-1/1)
Rational(-13, 1).remainder(-4) # => (-1/1)
相关用法
- Ruby Numeric.i用法及代码示例
- Ruby Numeric.eql?用法及代码示例
- Ruby Numeric.coerce用法及代码示例
- Ruby Numeric.self % other用法及代码示例
- Ruby Numeric.magnitude用法及代码示例
- Ruby Numeric.to_int用法及代码示例
- 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.remainder。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。