Golang : Detect variable or constant type
Problem :
You have a variable or constant and you want to know which type the variable belongs to.
Solution :
Use the reflect
package. From the overview itself :
A call to ValueOf returns a Value representing the run-time data. Zero takes a Type and returns a Value representing a zero value for that type.
For example :
package main
import (
"fmt"
"reflect"
"strconv"
)
func main() {
var str string = "123456789"
sixtyFour, err := strconv.ParseInt(str, 10, 64) // use base 10 for sanity
if err != nil {
fmt.Println(err)
}
fmt.Printf("The type of str is %v \n", reflect.TypeOf(str))
fmt.Printf("The type of sixtyFour is %v \n", reflect.TypeOf(sixtyFour))
}
Output :
The type of str is string
The type of sixtyFour is int64
Reference :
See also : Golang : Constant and variable names in native language
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
+20.6k Swift : Convert (cast) Int to int32 or Uint32
+13.5k Golang : Read from buffered reader until specific number of bytes
+17k Golang : How to generate QR codes?
+5.3k Responsive Google Adsense
+20.3k Golang : Convert seconds to human readable time format example
+17.9k How to enable MariaDB/MySQL logs ?
+12.5k Golang : Flush and close file created by os.Create and bufio.NewWriter example
+7k Default cipher that OpenSSL used to encrypt a PEM file
+11.6k Swift : Convert (cast) Float to String
+7.8k Golang : How to execute code at certain day, hour and minute?
+18.5k Golang : How to get hour, minute, second from time?