Golang : How to check variable or object type during runtime?
Problem :
You need to determine the type of data your program is getting from the user input or the variable type during runtime. How to do that?
Solution :
Use the reflect
package's TypeOf(x).Kind()
function. For example :
package main
import (
"fmt"
"reflect"
)
func main() {
x := 1
typeX := reflect.TypeOf(x).Kind()
fmt.Println("X is type of : ", typeX)
y := float64(108.08)
typeY := reflect.TypeOf(y).Kind()
fmt.Println("Y is type of : ", typeY)
s := "hey!"
typeS := reflect.TypeOf(s).Kind()
if typeS == reflect.String {
fmt.Println("Variable S is type string!")
}
}
Output :
X is type of : int
Y is type of : float64
Variable S is type string!
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
+14.7k Golang : Send email with attachment(RFC2822) using Gmail API example
+6.4k Unix/Linux : Use netstat to find out IP addresses served by your website server
+29.9k Golang : Get and Set User-Agent examples
+33.1k Delete a directory in Go
+30.5k Golang : Generate random string
+26.1k Golang : Convert IP address string to long ( unsigned 32-bit integer )
+27.4k Golang : Convert CSV data to JSON format and save to file
+23.8k Find and replace a character in a string in Go
+7.1k Golang : Validate credit card example
+19.1k Golang : When to use public and private identifier(variable) and how to make the identifier public or private?
+4.4k Golang : Valued expressions and functions example