Created
October 2, 2013 11:04
-
-
Save kwmt/6792088 to your computer and use it in GitHub Desktop.
構造体のフィールド名、値をリフレクション(reflectパッケージ)を使って取得する。
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 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