📜  Golang 中的 bits.Len8()函数示例

📅  最后修改于: 2021-10-25 02:17:38             🧑  作者: Mango

Go 语言提供了对位的内置支持,以在位包的帮助下为预先声明的无符号整数类型实现位计数和操作功能。该包提供了Len8()函数,用于查找表示 a 所需的最小位数,结果为 0 表示 a == 0。要访问 Len8()函数,您需要在程序中添加 math/bits 包在 import 关键字的帮助下。

句法:

func Len8(a uint8) (n int)

参数:该函数接受一个 uint8 类型的参数,即 a。

返回值:此函数返回表示 a 所需的最小位数。

示例 1:

// Golang program to illustrate bits.Len8() Function
package main
  
import (
    "fmt"
    "math/bits"
)
  
// Main function
func main() {
  
    // Using Len8() function
    a := bits.Len8(3)
    fmt.Printf("The minimum number of bits "+
        "required to represent %d: %d", 3, a)
  
}

输出:

The minimum number of bits required to represent 3: 2

示例 2:

// Golang program to illustrate bits.Len8() Function
package main
  
import (
    "fmt"
    "math/bits"
)
  
// Main function
func main() {
  
    // Using Len8() function
    a1 := bits.Len8(2)
    fmt.Printf("Len8(%08b) = %d\n", 2, a1)
  
    a2 := bits.Len8(12)
    fmt.Printf("Len8(%08b) = %d\n", 12, a2)
  
}

输出:

Len8(00000010) = 2
Len8(00001100) = 4