Convert Int data type to Int16 Int32 Int64
Example
package main
import (
"fmt"
"reflect"
)
func main() {
var i int = 10
fmt.Println(reflect.TypeOf(i))
i16 := int16(i)
fmt.Println(reflect.TypeOf(i16))
i32 := int32(i)
fmt.Println(reflect.TypeOf(i32))
i64 := int64(i)
fmt.Println(reflect.TypeOf(i64))
}
Output
int
int16
int32
int64
Most Helpful This Week
Golang HTTP GET request with parameters
How to convert Boolean Type to String in Go?
GO language program with example of Array Reverse Sort Functions for integer and strings
Illustration of the dining philosophers problem in Golang
Example of Fscan, Fscanf, and Fscanln from FMT Package
Top Programming Languages Behind Blockchain App Development