实例方法
round(_:)
使用指定的舍入规则将值舍入为整数值。
声明
mutating func round(_ rule: FloatingPointRoundingRule)
参数
rule
要使用的舍入规则。
详述
以下示例使用四种不同的舍入规则对值进行舍入:
// Equivalent to the C 'round' function:
var w = 6.5
w.round(.toNearestOrAwayFromZero)
// w == 7.0
// Equivalent to the C 'trunc' function:
var x = 6.5
x.round(.towardZero)
// x == 6.0
// Equivalent to the C 'ceil' function:
var y = 6.5
y.round(.up)
// y == 7.0
// Equivalent to the C 'floor' function:
var z = 6.5
z.round(.down)
// z == 6.0
有关可用舍入规则的详细信息,请参阅FloatingPointRoundingRule
枚举。要使用默认 “schoolbook rounding” 对值进行舍入,您可以改用较短的 round()
方法。
var w1 = 6.5
w1.round()
// w1 == 7.0
可用版本
iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+
相关用法
- Swift Double rounded(_:)用法及代码示例
- Swift Double remainder(dividingBy:)用法及代码示例
- Swift Double random(in:using:)用法及代码示例
- Swift Double radix用法及代码示例
- Swift Double random(in:)用法及代码示例
- Swift Double significand用法及代码示例
- Swift Double truncatingRemainder(dividingBy:)用法及代码示例
- Swift Double -(_:_:)用法及代码示例
- Swift Double /(_:_:)用法及代码示例
- Swift Double ...(_:_:)用法及代码示例
- Swift Double isZero用法及代码示例
- Swift Double init(nan:signaling:)用法及代码示例
- Swift Double -(_:)用法及代码示例
- Swift Double binade用法及代码示例
- Swift Double ...(_:)用法及代码示例
- Swift Double init(signOf:magnitudeOf:)用法及代码示例
- Swift Double isNaN用法及代码示例
- Swift Double pi用法及代码示例
- Swift Double init(_:)用法及代码示例
- Swift Double maximum(_:_:)用法及代码示例
- Swift Double negate()用法及代码示例
- Swift Double +(_:_:)用法及代码示例
- Swift Double formRemainder(dividingBy:)用法及代码示例
- Swift Double init(exactly:)用法及代码示例
- Swift Double maximumMagnitude(_:_:)用法及代码示例
注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 Double round(_:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。