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
+15.2k Golang : How to add color to string?
+20k Golang : Measure http.Get() execution time
+21.4k Golang : Create and resolve(read) symbolic links
+15.9k Golang : ROT47 (Caesar cipher by 47 characters) example
+6.9k Golang : Pat multiplexer routing example
+8.7k Golang : Add text to image and get OpenCV's X, Y co-ordinates example
+9.7k Golang : Copy map(hash table) example
+16.7k Golang : Delete files by extension
+7.1k Golang : Squaring elements in array
+14.4k Golang : Recombine chunked files example
+6.2k Golang : Build new URL for named or registered route with Gorilla webtoolkit example
+8.9k Golang : On lambda, anonymous, inline functions and function literals