-
Notifications
You must be signed in to change notification settings - Fork 0
/
structs.go
56 lines (44 loc) · 999 Bytes
/
structs.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
package main
// Slide 18
import (
"fmt"
"reflect"
)
type Creature interface {
MakeSound() string
}
type Person struct {
Name string
Age uint8
}
type FancyInt int
func (i *FancyInt) PrintMe() {
fmt.Println("fancy int i:", *i)
}
func (p *Person) MakeSound() string {
return "Hi, I'm " + p.Name + "!"
}
func main() {
fmt.Println("structs!")
myPerson := Person{
Name: "Friendo",
Age: 20,
}
fmt.Println("Person", myPerson.Name, "aged", myPerson.Age)
myPersonType := reflect.TypeOf(myPerson).Kind()
fmt.Println("myPersonType:", myPersonType)
pointerPerson := &Person{
Name: "Pointo",
Age: 30,
}
fmt.Println("Person", pointerPerson.Name, "aged", pointerPerson.Age)
pointerPersonType := reflect.TypeOf(pointerPerson).Kind()
fmt.Println("pointerPersonType:", pointerPersonType)
var myFancyInt FancyInt = 10
myFancyInt.PrintMe()
var notAPerson Creature = &Person{
Name: "Totally Not a Person",
Age: 40,
}
fmt.Println("Make sound:", notAPerson.MakeSound())
}