-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterfaces.go
More file actions
68 lines (55 loc) · 1.1 KB
/
interfaces.go
File metadata and controls
68 lines (55 loc) · 1.1 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
59
60
61
62
63
64
65
66
67
68
package main
import (
"fmt"
"math"
)
type geometry interface {
area() float64
perimeter() float64
}
type rect struct {
length float64
breadth float64
}
type circle2 struct {
radius float64
}
// defining area and perimeter on rect
func (r rect) area() float64 {
return r.length * r.breadth
}
func (r rect) perimeter() float64 {
return 2 * (r.length + r.breadth)
}
// defining area and perimeter on circle
func (c circle2) area() float64 {
return math.Pi * c.radius * c.radius
}
func (c circle2) perimeter() float64 {
return 2 * math.Pi * c.radius
}
// multi utility function
func someFunc(g geometry) {
fmt.Println(g)
fmt.Println(g.area())
fmt.Println(g.perimeter())
}
func findType(g geometry){
switch g.(type){
case rect:
fmt.Println("Type is rect")
case circle2:
fmt.Println("Type is circle")
default:
fmt.Println("Type is not rect or circle")
}
}
func InterfaceProgram() {
// both structs implements all the functions of geometry interface which automatically implements the interface
r := rect{10, 12}
c := circle2{5}
someFunc(r)
someFunc(c)
findType(r)
findType(c)
}