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


Swift Float80 formRemainder(dividingBy:)用法及代碼示例


實例方法

formRemainder(dividingBy:)

將此值替換為自身除以給定值的餘數。

聲明

mutating func formRemainder(dividingBy other: Float80)

參數

other

除此值時要使用的值。

詳述

對於兩個有限值 xy ,將 x 除以 y 的餘數 r 滿足 x == y * q + r ,其中 q 是最接近 x / y 的整數。如果x / y 恰好在兩個整數之間,則選擇q 為偶數。請注意,qnot x / y 以浮點算術計算的,並且 q 可能無法以任何可用的整數類型表示。

以下示例計算 8.625 除以 0.75 的餘數:


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


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


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

如果此值和 other 是有限數,則餘數在封閉範圍內 -abs(other / 2)...abs(other / 2)formRemainder(dividingBy:) 方法總是準確的。

可用版本

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

相關用法


注:本文由純淨天空篩選整理自apple.com大神的英文原創作品 Float80 formRemainder(dividingBy:)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。