A是一个接口,a是实现了接口A的类型,那么我认为A(接口)可以接收 *a(a的指针)。

type A interface {
	out() int
}

type a struct {
	b int
}

func (x a) out() int {
	return x.b
}

为证明二者一样,构建如下函数:

func newA() A {
	x := a{2}
	return &x //这里放到编译器没有报错,也基本说明正确了,下面在运行程序试试
}

运行程序:

func main() {
	x1 := newA()
	fmt.Println(x1.out())
}

在这里插入图片描述

正常是,结构体符合接口,或是结构体的指针符合接口,可以直接传给接口的参数,但是go这里让 符合接口的结构体的指针 也可以传过去,可能是个纰漏,最好别这么写。