Last active
August 25, 2024 18:35
-
-
Save drewolson/4771479 to your computer and use it in GitHub Desktop.
Golang Reflection Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"reflect" | |
) | |
type Foo struct { | |
FirstName string `tag_name:"tag 1"` | |
LastName string `tag_name:"tag 2"` | |
Age int `tag_name:"tag 3"` | |
} | |
func (f *Foo) reflect() { | |
val := reflect.ValueOf(f).Elem() | |
for i := 0; i < val.NumField(); i++ { | |
valueField := val.Field(i) | |
typeField := val.Type().Field(i) | |
tag := typeField.Tag | |
fmt.Printf("Field Name: %s,\t Field Value: %v,\t Tag Value: %s\n", typeField.Name, valueField.Interface(), tag.Get("tag_name")) | |
} | |
} | |
func main() { | |
f := &Foo{ | |
FirstName: "Drew", | |
LastName: "Olson", | |
Age: 30, | |
} | |
f.reflect() | |
} |
It is what exactly I wanted. :) It helps to save my time a lot. Thanks.
nice example!!!
Thank you! It's helpful for me!
Thank You :)
Great, thanks!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks!!!