Open In App

bits.OnesCount8() Function in Golang with Examples

Last Updated : 19 Apr, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

Go language provides inbuilt support for bits to implement bit counting and manipulation functions for the predeclared unsigned integer types with the help of bits package. This package provides the OnesCount8() function which is used to find the number of one bits in a. To access the OnesCount8() function you need to add a math/bits package in your program with the help of the import keyword.

Syntax:

func OnesCount8(a uint8) int

Parameters: This function takes one parameter of uint8 type, i.e., a.

Return Value: This function returns the total number of one bits that are used to represent a.

Example 1:




// Golang program to illustrate bits.OnesCount8() Function
package main
  
import (
    "fmt"
    "math/bits"
)
  
// Main function
func main() {
  
    // Using OnesCount8() function
    a := bits.OnesCount8(5)
    fmt.Printf("Total number of one bits that"+
        " are used to represent %d: %d", 5, a)
  
}


Output:

Total number of one bits that are used to represent 5: 2

Example 2:




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


Output:

OnesCount8(00000100) = 1
OnesCount8(00001101) = 3


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads