ฉันแค่ทำงานผ่านทัวร์ไปและฉันก็สับสนเกี่ยวกับพอยน์เตอร์และอินเทอร์เฟซ เหตุใดรหัส Go นี้จึงไม่รวบรวม
package main
type Interface interface {}
type Struct struct {}
func main() {
var ps *Struct
var pi *Interface
pi = ps
_, _ = pi, ps
}
เช่นถ้าStruct
เป็นInterface
เหตุผลที่จะไม่*Struct
เป็น*Interface
?
ข้อความแสดงข้อผิดพลาดที่ฉันได้รับคือ:
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 }
และทำข้อสรุปของคุณเอง