Avec Swift 5, selon vos besoins, vous pouvez choisir l'un des 9 styles suivants afin d'avoir un résultat arrondi de a Double
.
#1. Utilisation de la FloatingPoint
rounded()
méthode
Dans le cas le plus simple, vous pouvez utiliser la Double
rounded()
méthode.
let roundedValue1 = (0.6844 * 1000).rounded() / 1000
let roundedValue2 = (0.6849 * 1000).rounded() / 1000
print(roundedValue1) // returns 0.684
print(roundedValue2) // returns 0.685
# 2. Utilisation de la FloatingPoint
rounded(_:)
méthode
let roundedValue1 = (0.6844 * 1000).rounded(.toNearestOrEven) / 1000
let roundedValue2 = (0.6849 * 1000).rounded(.toNearestOrEven) / 1000
print(roundedValue1) // returns 0.684
print(roundedValue2) // returns 0.685
# 3. Utilisation de la round
fonction Darwin
La Fondation propose une round
fonction via Darwin.
import Foundation
let roundedValue1 = round(0.6844 * 1000) / 1000
let roundedValue2 = round(0.6849 * 1000) / 1000
print(roundedValue1) // returns 0.684
print(roundedValue2) // returns 0.685
# 4. Utilisation d'une Double
méthode personnalisée d'extension construite avec Darwin round
et des pow
fonctions
Si vous souhaitez répéter l'opération précédente plusieurs fois, la refactorisation de votre code peut être une bonne idée.
import Foundation
extension Double {
func roundToDecimal(_ fractionDigits: Int) -> Double {
let multiplier = pow(10, Double(fractionDigits))
return Darwin.round(self * multiplier) / multiplier
}
}
let roundedValue1 = 0.6844.roundToDecimal(3)
let roundedValue2 = 0.6849.roundToDecimal(3)
print(roundedValue1) // returns 0.684
print(roundedValue2) // returns 0.685
Si nécessaire, NSDecimalNumber
offre une solution détaillée mais puissante pour arrondir les nombres décimaux.
import Foundation
let scale: Int16 = 3
let behavior = NSDecimalNumberHandler(roundingMode: .plain, scale: scale, raiseOnExactness: false, raiseOnOverflow: false, raiseOnUnderflow: false, raiseOnDivideByZero: true)
let roundedValue1 = NSDecimalNumber(value: 0.6844).rounding(accordingToBehavior: behavior)
let roundedValue2 = NSDecimalNumber(value: 0.6849).rounding(accordingToBehavior: behavior)
print(roundedValue1) // returns 0.684
print(roundedValue2) // returns 0.685
import Foundation
let scale = 3
var value1 = Decimal(0.6844)
var value2 = Decimal(0.6849)
var roundedValue1 = Decimal()
var roundedValue2 = Decimal()
NSDecimalRound(&roundedValue1, &value1, scale, NSDecimalNumber.RoundingMode.plain)
NSDecimalRound(&roundedValue2, &value2, scale, NSDecimalNumber.RoundingMode.plain)
print(roundedValue1) // returns 0.684
print(roundedValue2) // returns 0.685
Si vous souhaitez renvoyer un NSString
de votre opération d'arrondi, l'utilisation de l' NSString
initialiseur est une solution simple mais efficace.
import Foundation
let roundedValue1 = NSString(format: "%.3f", 0.6844)
let roundedValue2 = NSString(format: "%.3f", 0.6849)
print(roundedValue1) // prints 0.684
print(roundedValue2) // prints 0.685
# 8. Utilisation de l' String
init(format:_:)
initialiseur
Le String
type de Swift est ponté avec la NSString
classe de la Fondation . Par conséquent, vous pouvez utiliser le code suivant afin de renvoyer un String
de votre opération d'arrondi:
import Foundation
let roundedValue1 = String(format: "%.3f", 0.6844)
let roundedValue2 = String(format: "%.3f", 0.6849)
print(roundedValue1) // prints 0.684
print(roundedValue2) // prints 0.685
Si vous prévoyez d'obtenir un résultat String?
de votre opération d'arrondi, NumberFormatter
propose une solution hautement personnalisable.
import Foundation
let formatter = NumberFormatter()
formatter.numberStyle = NumberFormatter.Style.decimal
formatter.roundingMode = NumberFormatter.RoundingMode.halfUp
formatter.maximumFractionDigits = 3
let roundedValue1 = formatter.string(from: 0.6844)
let roundedValue2 = formatter.string(from: 0.6849)
print(String(describing: roundedValue1)) // prints Optional("0.684")
print(String(describing: roundedValue2)) // prints Optional("0.685")
round(_:)
,Double
round()
,NSString
initialiseur,String
initialiseur,NumberFormatter
, double extension ou mêmeNSDecimalNumber
etDecimal
.