Skip to content

Instantly share code, notes, and snippets.

@kwmt
Created October 2, 2013 11:04
Show Gist options
  • Save kwmt/6792088 to your computer and use it in GitHub Desktop.
Save kwmt/6792088 to your computer and use it in GitHub Desktop.
構造体のフィールド名、値をリフレクション(reflectパッケージ)を使って取得する。
package main
import (
"fmt"
"reflect"
)
type Hoge struct {
N int
}
func main() {
h := Hoge{10}
v := reflect.ValueOf(h) //Value
t := v.Type() //Type
name := t.Field(0).Name
fmt.Println(name) //フィールド:N
fmt.Println(v.FieldByName(name).Interface()) //h.Nの値
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment