Contents

inteface

Contents

what

inreface

feature

  1. 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())