本文简要介绍ruby语言中 Numeric.divmod
的用法。
用法
divmod(other) → array
返回一个 2 元素数组 [q, r]
,其中
q = (self/other).floor # Quotient
r = self % other # Remainder
在核心和标准库类中,只有 Rational
使用此实现。
例子:
Rational(11, 1).divmod(4) # => [2, (3/1)]
Rational(11, 1).divmod(-4) # => [-3, (-1/1)]
Rational(-11, 1).divmod(4) # => [-3, (1/1)]
Rational(-11, 1).divmod(-4) # => [2, (-3/1)]
Rational(12, 1).divmod(4) # => [3, (0/1)]
Rational(12, 1).divmod(-4) # => [-3, (0/1)]
Rational(-12, 1).divmod(4) # => [-3, (0/1)]
Rational(-12, 1).divmod(-4) # => [3, (0/1)]
Rational(13, 1).divmod(4.0) # => [3, 1.0]
Rational(13, 1).divmod(Rational(4, 11)) # => [35, (3/11)]
相关用法
- Ruby Numeric.i用法及代码示例
- Ruby Numeric.eql?用法及代码示例
- Ruby Numeric.coerce用法及代码示例
- Ruby Numeric.self % other用法及代码示例
- Ruby Numeric.magnitude用法及代码示例
- Ruby Numeric.to_int用法及代码示例
- Ruby Numeric.remainder用法及代码示例
- Ruby Numeric.step用法及代码示例
- Ruby Numeric.modulo用法及代码示例
- 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.divmod。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。