-
Notifications
You must be signed in to change notification settings - Fork 0
/
interfaces.go
55 lines (41 loc) · 1001 Bytes
/
interfaces.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
package main
import "fmt"
type Operacao interface {
Calcular() int
}
type Soma struct {
operando1, operando2 int
}
type Subtracao struct {
operando1, operando2 int
}
func main() {
var soma Operacao
soma = Soma{10, 20}
fmt.Printf("%v = %d\n", soma, soma.Calcular())
fmt.Println("-------------------------------")
operacoes := make([]Operacao, 4)
operacoes[0] = Soma{10, 20}
operacoes[1] = Subtracao{30, 15}
operacoes[2] = Subtracao{10, 50}
operacoes[3] = Soma{5, 2}
acumulador := 0
for _, op := range operacoes {
valor := op.Calcular()
fmt.Printf("%v = %d\n", op, valor)
acumulador += valor
}
fmt.Println("Valor acumulado =", acumulador)
}
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)
}