Created
December 12, 2017 17:56
-
-
Save jonbodner/1727d0825d73541db8d6fcb859515735 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
type Foo struct { | |
A int `tag1:"First Tag" tag2:"Second Tag"` | |
B string | |
} | |
func main() { | |
sl := []int{1, 2, 3} | |
greeting := "hello" | |
greetingPtr := &greeting | |
f := Foo{A: 10, B: "Salutations"} | |
fp := &f | |
slType := reflect.TypeOf(sl) | |
gType := reflect.TypeOf(greeting) | |
grpType := reflect.TypeOf(greetingPtr) | |
fType := reflect.TypeOf(f) | |
fpType := reflect.TypeOf(fp) | |
examiner(slType, 0) | |
examiner(gType, 0) | |
examiner(grpType, 0) | |
examiner(fType, 0) | |
examiner(fpType, 0) | |
} | |
func examiner(t reflect.Type, depth int) { | |
fmt.Println(strings.Repeat("\t", depth), "Type is", t.Name(), "and kind is", t.Kind()) | |
switch t.Kind() { | |
case reflect.Array, reflect.Chan, reflect.Map, reflect.Ptr, reflect.Slice: | |
fmt.Println(strings.Repeat("\t", depth+1), "Contained type:") | |
examiner(t.Elem(), depth+1) | |
case reflect.Struct: | |
for i := 0; i < t.NumField(); i++ { | |
f := t.Field(i) | |
fmt.Println(strings.Repeat("\t", depth+1), "Field", i+1, "name is", f.Name, "type is", f.Type.Name(), "and kind is", f.Type.Kind()) | |
if f.Tag != "" { | |
fmt.Println(strings.Repeat("\t", depth+2), "Tag is", f.Tag) | |
fmt.Println(strings.Repeat("\t", depth+2), "tag1 is", f.Tag.Get("tag1"), "tag2 is", f.Tag.Get("tag2")) | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
😍