Skip to content

Instantly share code, notes, and snippets.

@kwmt
Created October 2, 2013 11:09
Show Gist options
  • Save kwmt/6792127 to your computer and use it in GitHub Desktop.
Save kwmt/6792127 to your computer and use it in GitHub Desktop.
reflectを使って構造体の値を書きかえる。
package main
import (
"fmt"
"reflect"
)
type Hoge struct {
N int
M string
O int
}
func (h *Hoge) Set(x Hoge) {
xv := reflect.ValueOf(x)
hv := reflect.ValueOf(h)
fmt.Println(hv.Elem().CanSet()) // trueじゃないと値を変更できない
hv.Elem().Set(xv)
}
func main() {
h := Hoge{N: 10, M: "str"}
x := Hoge{N: 20, M: "ing"}
//Set前
fmt.Println(h, x)
h.Set(x)
//Set後
fmt.Println(h, x)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment