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
GO Program to Check Whether a Number is Even or Odd
How do you handle HTTP client server compression in Go?
Implementing Multiple Interfaces in Go Programming Language
Struct Instantiation Using Pointer Address Operator
GO language program with example of Sort Functions for integer, strings and float64 data type
GO language program with an example of Hash Table