实例方法
rounded(_:)
使用指定的舍入规则将此值返回为整数值。
声明
func rounded(_ rule: FloatingPointRoundingRule) -> Self
返回值
通过使用 rule
舍入找到的整数值。
参数
rule
要使用的舍入规则。
详述
以下示例使用四种不同的舍入规则对值进行舍入:
let x = 6.5
// Equivalent to the C 'round' function:
print(x.rounded(.toNearestOrAwayFromZero))
// Prints "7.0"
// Equivalent to the C 'trunc' function:
print(x.rounded(.towardZero))
// Prints "6.0"
// Equivalent to the C 'ceil' function:
print(x.rounded(.up))
// Prints "7.0"
// Equivalent to the C 'floor' function:
print(x.rounded(.down))
// Prints "6.0"
有关可用舍入规则的详细信息,请参阅FloatingPointRoundingRule
枚举。要使用默认 “schoolbook rounding” 对值进行舍入,您可以改用较短的 rounded()
方法。
print(x.rounded())
// Prints "7.0"
可用版本
iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+
相关用法
- Swift Float round(_:)用法及代码示例
- Swift Float radix用法及代码示例
- Swift Float remainder(dividingBy:)用法及代码示例
- Swift Float random(in:using:)用法及代码示例
- Swift Float random(in:)用法及代码示例
- Swift Float -(_:)用法及代码示例
- Swift Float ...(_:_:)用法及代码示例
- Swift Float init(integerLiteral:)用法及代码示例
- Swift Float init(_:)用法及代码示例
- Swift Float ..<(_:)用法及代码示例
- Swift Float init(signOf:magnitudeOf:)用法及代码示例
- Swift Float +(_:_:)用法及代码示例
- Swift Float formTruncatingRemainder(dividingBy:)用法及代码示例
- Swift Float isEqual(to:)用法及代码示例
- Swift Float /(_:_:)用法及代码示例
- Swift Float exponent用法及代码示例
- Swift Float minimum(_:_:)用法及代码示例
- Swift Float init(floatLiteral:)用法及代码示例
- Swift Float init(sign:exponent:significand:)用法及代码示例
- Swift Float maximum(_:_:)用法及代码示例
- Swift Float magnitude用法及代码示例
- Swift Float negate()用法及代码示例
- Swift Float -(_:_:)用法及代码示例
- Swift Float init(exactly:)用法及代码示例
- Swift Float exponentBitCount用法及代码示例
注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 Float rounded(_:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。