位。Golang 中的 LeadingZeros()函数示例

原文:https://www . geesforgeks . org/bits-leading zeros-function-in-golang-with-examples/

位。Golang 中的 LeadingZeros()函数用于查找给定数字中前导零位的个数。如果给定的数字等于零,那么这个函数将返回 UintSize。要访问这个函数,需要在程序中导入数学/位包。

语法:

```go func LeadingZeros64(x uint) int

```

参数:该函数取 uint 类型的一个参数,即 x。

返回值:该函数返回 x 中前导零位的总数。

例 1:

// Golang program to illustrate
// bits.LeadingZeros() Function
package main

import (
    "fmt"
    "math/bits"
)

// Main function
func main() {

    // Using LeadingZeros() function
    x := bits.LeadingZeros(5)
    fmt.Println("Total number of leading zero bits: ", x)

}

输出:

Total number of leading zero bits:  61

例 2:

// Golang program to illustrate
// bits.LeadingZeros() Function
package main

import (
    "fmt"
    "math/bits"
)

// Main function
func main() {

    // Using LeadingZeros() function
    x := bits.LeadingZeros(0)
    fmt.Println("Total number of leading zero bits: ", x)

}

输出:

Total number of leading zero bits:  64