2014-08-01から1ヶ月間の記事一覧
・ポインタはよしなにdereferenceしてくれる http://golang.org/ref/spec#Selectors http://play.golang.org/p/WtCuLsr824 package main type T0 struct { x int } func (recv *T0) M0(){ println("*T0:",recv.x) } type T1 struct { y int } func (recv T1)…
・ポインタはよしなにdereferenceしてくれる http://golang.org/ref/spec#Selectors http://play.golang.org/p/WtCuLsr824 package main type T0 struct { x int } func (recv *T0) M0(){ println("*T0:",recv.x) } type T1 struct { y int } func (recv T1)…