GO语言"math/bits"包中"Len8"函数的用法及代码示例。
用法:
func Len8(x uint8) int
Len8 返回表示 x 所需的最小位数;对于 x == 0,结果为 0。
例子:
package main
import (
"fmt"
"math/bits"
)
func main() {
fmt.Printf("Len8(%08b) = %d\n", 8, bits.Len8(8))
}
输出:
Len8(00001000) = 4
相关用法
- GO Len64用法及代码示例
- GO Len32用法及代码示例
- GO Len16用法及代码示例
- GO LeadingZeros32用法及代码示例
- GO LeadingZeros8用法及代码示例
- GO LeadingZeros16用法及代码示例
- GO LeadingZeros64用法及代码示例
- GO Logger.Output用法及代码示例
- GO LastIndex用法及代码示例
- GO Log10用法及代码示例
- GO Log用法及代码示例
- GO ListenAndServe用法及代码示例
- GO Listener用法及代码示例
- GO LastIndexAny用法及代码示例
- GO Logger用法及代码示例
- GO ListenAndServeTLS用法及代码示例
- GO LoadLocation用法及代码示例
- GO LastIndexFunc用法及代码示例
- GO LoadX509KeyPair用法及代码示例
- GO LookPath用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 Len8。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。