-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoperacoes-duck-typing.go
74 lines (57 loc) · 1.29 KB
/
operacoes-duck-typing.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
69
70
71
72
73
74
package main
import (
"fmt"
"time"
)
type Operacao interface {
Calcular() int
}
type Soma struct {
operando1, operando2 int
}
type Subtracao struct {
operando1, operando2 int
}
type Idade struct {
anoNascimento int
}
func main() {
operacoes := make([]Operacao, 4)
operacoes[0] = Soma{10, 20}
operacoes[1] = Subtracao{30, 15}
operacoes[2] = Subtracao{10, 50}
operacoes[3] = Soma{5, 2}
fmt.Println("Valor acumulado =", acumular(operacoes))
idades := make([]Operacao, 3)
idades[0] = Idade{1969}
idades[1] = Idade{1977}
idades[2] = Idade{2001}
fmt.Println("Idades acumuladas =", acumular(idades))
}
func acumular(operacoes []Operacao) int {
acumulador := 0
for _, op := range operacoes {
valor := op.Calcular()
fmt.Printf("%v = %d\n", op, valor)
acumulador += valor
}
return acumulador
}
func (i Idade) Calcular() int {
return time.Now().Year() - i.anoNascimento
}
func (i Idade) String() string {
return fmt.Sprintf("Idade desde %d", i.anoNascimento)
}
func (s Soma) Calcular() int {
return s.operando1 + s.operando2
}
func (s Soma) String() string {
return fmt.Sprintf("%d + %d", s.operando1, s.operando2)
}
func (s Subtracao) Calcular() int {
return s.operando1 - s.operando2
}
func (s Subtracao) String() string {
return fmt.Sprintf("%d - %d", s.operando1, s.operando2)
}