实例属性
nonzero
nonzeroBitCount
此值的二进制表示中等于 1 的位数。
声明
var nonzeroBitCount: Int { get }
详述
例如,在 bitWidth
值为 8 的固定宽度整数类型中,数字 31
有五个等于 1
的位。
let x: Int8 = 0b0001_1111
// x == 31
// x.nonzeroBitCount == 5
可用版本
iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+
相关用法
- Swift UInt32 ...(_:_:)用法及代码示例
- Swift UInt32 &>>(_:_:)用法及代码示例
- Swift UInt32 /=(_:_:)用法及代码示例
- Swift UInt32 *=(_:_:)用法及代码示例
- Swift UInt32 >>=(_:_:)用法及代码示例
- Swift UInt32 init(integerLiteral:)用法及代码示例
- Swift UInt32 |=(_:_:)用法及代码示例
- Swift UInt32 *(_:_:)用法及代码示例
- Swift UInt32 /(_:_:)用法及代码示例
- Swift UInt32 +(_:_:)用法及代码示例
- Swift UInt32 |(_:_:)用法及代码示例
- Swift UInt32 quotientAndRemainder(dividingBy:)用法及代码示例
- Swift UInt32 +(_:)用法及代码示例
- Swift UInt32 &=(_:_:)用法及代码示例
- Swift UInt32 init(clamping:)用法及代码示例
- Swift UInt32 &<<(_:_:)用法及代码示例
- Swift UInt32 !=(_:_:)用法及代码示例
- Swift UInt32 %=(_:_:)用法及代码示例
- Swift UInt32 init(_:)用法及代码示例
- Swift UInt32 random(in:)用法及代码示例
- Swift UInt32 random(in:using:)用法及代码示例
- Swift UInt32 &*(_:_:)用法及代码示例
- Swift UInt32 &*=(_:_:)用法及代码示例
- Swift UInt32 &>>=(_:_:)用法及代码示例
- Swift UInt32 init(truncatingIfNeeded:)用法及代码示例
注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 UInt32 nonzeroBitCount。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。