实例属性
magnitude
这个值的大小。
声明
var magnitude: UInt8 { get }
详述
对于任何数值 x
, x.magnitude
是 x
的绝对值。您可以在更简单的无符号值操作中使用magnitude
属性,例如打印整数的值,这只是在绝对值前面打印一个“-”字符。
let x = -200
// x.magnitude == 200
当您需要查找绝对值时,全局abs(_:)
函数提供了更熟悉的语法。此外,由于 abs(_:)
始终返回相同类型的值,即使在通用上下文中,也鼓励使用函数而不是 magnitude
属性。
可用版本
iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+
相关用法
- Swift Int8 multipliedFullWidth(by:)用法及代码示例
- Swift Int8 ~(_:)用法及代码示例
- Swift Int8 *=(_:_:)用法及代码示例
- Swift Int8 -(_:_:)用法及代码示例
- Swift Int8 %(_:_:)用法及代码示例
- Swift Int8 |=(_:_:)用法及代码示例
- Swift Int8 ...(_:_:)用法及代码示例
- Swift Int8 init(truncatingIfNeeded:)用法及代码示例
- Swift Int8 >>(_:_:)用法及代码示例
- Swift Int8 /(_:_:)用法及代码示例
- Swift Int8 ==(_:_:)用法及代码示例
- Swift Int8 |(_:_:)用法及代码示例
- Swift Int8 init(integerLiteral:)用法及代码示例
- Swift Int8 init(exactly:)用法及代码示例
- Swift Int8 <<=(_:_:)用法及代码示例
- Swift Int8 &(_:_:)用法及代码示例
- Swift Int8 trailingZeroBitCount用法及代码示例
- Swift Int8 init(_:radix:)用法及代码示例
- Swift Int8 &+(_:_:)用法及代码示例
- Swift Int8 ...(_:)用法及代码示例
- Swift Int8 >>=(_:_:)用法及代码示例
- Swift Int8 &<<=(_:_:)用法及代码示例
- Swift Int8 &<<(_:_:)用法及代码示例
- Swift Int8 random(in:)用法及代码示例
- Swift Int8 !=(_:_:)用法及代码示例
注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 Int8 magnitude。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。