-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path20_interfaces.go
More file actions
58 lines (46 loc) · 1.08 KB
/
20_interfaces.go
File metadata and controls
58 lines (46 loc) · 1.08 KB
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
package gobyexample
import (
"fmt"
"math"
)
// interface: a named collection of method signatures
type geometry interface {
area() float64
perim() float64
}
type rectangle struct {
width, height float64
}
type circle struct {
radius float64
}
// To implement an interface in Go, we just need
// to implement all the methods in the interface.
// Here, we implement `geometry` on the `rectangle` struct
func (r rectangle) area() float64 {
return r.width * r.height
}
func (r rectangle) perim() float64 {
return 2*r.width + 2*r.height
}
// And here, we implement `geometry` on the `circle` struct
func (c circle) area() float64 {
return math.Pi * c.radius * c.radius
}
func (c circle) perim() float64 {
return 2 * math.Pi * c.radius
}
// if a variable has an interface type, then we
// can call methods that are in the named interface
func measure(g geometry) {
fmt.Println(g)
fmt.Println(g.area())
fmt.Println(g.perim())
}
// InterfacesDemo - demonstrates interfaces in Go
func InterfacesDemo() {
r := rectangle{width: 3, height: 4}
c := circle{radius: 5}
measure(r)
measure(c)
}