Golang : How do I convert int to uint8?
Problem :
You have a variable of type int and you want to convert it to type uint8.
Solution :
Type cast the variable to uint8 with uint8()
function.
package main
import (
"fmt"
"reflect"
)
var test int = 8
func main() {
fmt.Printf("The value of test is %d \n", test)
fmt.Printf("The type of test is %v \n", reflect.TypeOf(test))
newTest := uint8(test)
fmt.Printf("The value of newTest is %d \n", newTest)
fmt.Printf("The type of newTest is %v \n", reflect.TypeOf(newTest))
}
Output :
The value of test is 8
The type of test is int
The value of newTest is 8
The type of newTest is uint8
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+10.8k Golang : Sieve of Eratosthenes algorithm
+7.7k Golang : Reverse a string with unicode
+4.7k Facebook : How to place save to Facebook button on your website
+5.8k Cash Flow : 50 days to pay your credit card debt
+12.2k Golang : Print UTF-8 fonts on image example
+15.1k Golang : How to add color to string?
+22.5k Generate checksum for a file in Go
+17.6k Golang : Read data from config file and assign to variables
+17k Golang : Get number of CPU cores
+7.4k Golang : How to stop user from directly running an executable file?
+16.4k Golang : How to implement two-factor authentication?
+21.2k Golang : Create and resolve(read) symbolic links