Sadece Go turunda çalışıyorum ve işaretçiler ve arayüzler hakkında kafam karıştı. Bu Go kodu neden derlenmiyor?
package main
type Interface interface {}
type Struct struct {}
func main() {
var ps *Struct
var pi *Interface
pi = ps
_, _ = pi, ps
}
yani eğer Struct
bir olduğunu Interface
, neden olmaz *Struct
bir olmak *Interface
?
Aldığım hata mesajı:
prog.go:10: cannot use ps (type *Struct) as type *Interface in assignment:
*Interface is pointer to interface, not interface
func main() { var ps *Struct = new(Struct) var pi *Interface var i Interface i = ps pi = &i fmt.Printf("%v, %v, %v\n", *ps, pi, &i) i = *ps fmt.Printf("%v, %v, %v\n", *ps, pi, i) _, _, _ = i, pi, ps }
ve kendi sonuçlarınızı çıkarmanızı önerebilir miyim