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

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

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

语法:

```go func LeadingZeros64(x uint64) int

```

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

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

例 1:

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

import (
    "fmt"
    "math/bits"
)

// Main function
func main() {

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

}

输出:

Total number of leading zero bits:  58

例 2:

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

import (
    "fmt"
    "math/bits"
)

// Main function
func main() {

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

}

输出:

Total number of leading zero bits:  64