inteface tony2099 included in base 2023-09-24 79 words One minute Contents what feature what inreface feature in interface, go auto take the address but not auto derefernce 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 type Name struct { firstName string lastName string } func (n Name) foo() string { return n.firstName + " " + n.lastName } type Goo interface { foo() string } func main() { var a Goo = &Name{"foo", "bar"} // auto take the address fmt.Println(a.foo()) Please enable JavaScript to view the comments powered by utterances.