当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Swift FloatingPoint remainder(dividingBy:)用法及代码示例


实例方法

remainder(dividingBy:)

返回此值除以给定值的余数。

声明

func remainder(dividingBy other: Self) -> Self

返回值

该值的余数除以 other

参数

other

除此值时要使用的值。

详述

对于两个有限值 xy ,将 x 除以 y 的余数 r 满足 x == y * q + r ,其中 q 是最接近 x / y 的整数。如果x / y 恰好在两个整数之间,则选择q 为偶数。请注意,qnot x / y 以浮点算术计算的,并且 q 可能无法以任何可用的整数类型表示。

以下示例计算 8.625 除以 0.75 的余数:


let x = 8.625
print(x / 0.75)
// Prints "11.5"


let q = (x / 0.75).rounded(.toNearestOrEven)
// q == 12.0
let r = x.remainder(dividingBy: 0.75)
// r == -0.375


let x1 = 0.75 * q + r
// x1 == 8.625

如果此值和 other 是有限数,则余数在封闭范围内 -abs(other / 2)...abs(other / 2)remainder(dividingBy:) 方法总是准确的。此方法实现由 IEEE 754 specification 定义的余数运算。

可用版本

iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+

相关用法


注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 FloatingPoint remainder(dividingBy:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。