-
Notifications
You must be signed in to change notification settings - Fork 0
/
interfaces02.go
68 lines (52 loc) · 911 Bytes
/
interfaces02.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/* RZFeeser | Alta3 Research
Interfaces - Getting at interfaces */
package main
import "fmt"
type animal interface {
breathe()
walk()
years()
}
type tiger struct {
age int
}
func (l tiger) breathe() {
fmt.Println("tiger breathes")
}
func (l tiger) walk() {
fmt.Println("tiger walks")
}
func (l tiger) years() {
fmt.Println("tiger age")
}
type giraffe struct {
age int
}
func (l giraffe) breathe() {
fmt.Println("giraffe breathes")
}
func (l giraffe) walk() {
fmt.Println("giraffe walks")
}
func (l giraffe) years() {
fmt.Println("giraffe age")
}
func main() {
l := tiger{age: 10}
callBreathe(l)
callWalk(l)
callYears(l)
d := giraffe{age: 5}
callBreathe(d)
callWalk(d)
callYears(d)
}
func callBreathe(a animal) {
a.breathe()
}
func callWalk(a animal) {
a.walk()
}
func callYears(a animal) {
a.years()
}