GO语言"math/bits"包中"OnesCount32"函数的用法及代码示例。
用法:
func OnesCount32(x uint32) int
OnesCount32 返回 x 中一位 ("population count") 的数量。
例子:
package main
import (
"fmt"
"math/bits"
)
func main() {
fmt.Printf("OnesCount32(%032b) = %d\n", 14, bits.OnesCount32(14))
}
输出:
OnesCount32(00000000000000000000000000001110) = 3
相关用法
- GO OnesCount8用法及代码示例
- GO OnesCount16用法及代码示例
- GO OnesCount64用法及代码示例
- GO OnesCount用法及代码示例
- GO Once用法及代码示例
- GO OpenFile用法及代码示例
- GO PutUvarint用法及代码示例
- GO Scanner.Scan用法及代码示例
- GO LeadingZeros32用法及代码示例
- GO NewFromFiles用法及代码示例
- GO Regexp.FindString用法及代码示例
- GO Time.Sub用法及代码示例
- GO Regexp.FindAllIndex用法及代码示例
- GO Encode用法及代码示例
- GO ResponseRecorder用法及代码示例
- GO Value用法及代码示例
- GO StreamWriter用法及代码示例
- GO Fscanln用法及代码示例
- GO Values.Get用法及代码示例
- GO NumError用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 OnesCount32。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。