Skip to content

Instantly share code, notes, and snippets.

@ccutch
Created February 16, 2018 00:40
Show Gist options
  • Save ccutch/16906cf06507c9bbaf74f7264b923c19 to your computer and use it in GitHub Desktop.
Save ccutch/16906cf06507c9bbaf74f7264b923c19 to your computer and use it in GitHub Desktop.
package main
import "fmt"
import "log"
import "encoding/gob"
import "bytes"
type Talkable interface {
Talk()
}
type Person struct {
Name string
}
func (p Person) Talk() {
fmt.Println("Hello I'm", p.Name)
}
type Dog struct {
Name string
}
func (d Dog) Talk() {
fmt.Println("Bork")
}
func main() {
var buff bytes.Buffer
gob.Register(Person{})
gob.Register(Dog{})
enc := gob.NewEncoder(&buff)
encodeTalkable(enc, Person{
Name: "Connor",
})
encodeTalkable(enc, Dog{
Name: "Levi",
})
encodeTalkable(enc, Person{
Name: "Ed",
})
dec := gob.NewDecoder(&buff)
for i := 0; i < 3; i++ {
res := decodeTalkable(dec)
switch res.(type) {
case Person:
fmt.Printf("Is Person (%s)\n", res.(Person).Name)
case Dog:
fmt.Printf("Is Dog (%s)\n", res.(Dog).Name)
}
res.Talk()
}
}
func encodeTalkable(enc *gob.Encoder, p Talkable) {
err := enc.Encode(&p)
if err != nil {
log.Fatal("encode:", err)
}
}
func decodeTalkable(dec *gob.Decoder) Talkable {
var p Talkable
err := dec.Decode(&p)
if err != nil {
log.Fatal("decode:", err)
}
return p
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment