文章目录 接口是指针 接口是值 总结 接口是指针 看个例子: type Animal interface { foo() bar() } type People struct { name string age int }