Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save the-redback/88ef21414d2ce1c315587e1604858669 to your computer and use it in GitHub Desktop.
Save the-redback/88ef21414d2ce1c315587e1604858669 to your computer and use it in GitHub Desktop.
Print struct with field names and values. From http://blog.golang.org/2011/09/laws-of-reflection.html
type T struct {
A int
B string
}
t := T{23, "skidoo"}
s := reflect.ValueOf(&t).Elem()
typeOfT := s.Type()
for i := 0; i < s.NumField(); i++ {
f := s.Field(i)
fmt.Printf("%d: %s %s = %v\n", i,
typeOfT.Field(i).Name, f.Type(), f.Interface())
}
// The output of this program is
//
// 0: A int = 23
// 1: B string = skidoo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment