add: type switch
This commit is contained in:
47
interfaces/07-type-switch/book.go
Normal file
47
interfaces/07-type-switch/book.go
Normal file
@@ -0,0 +1,47 @@
|
||||
// For more tutorials: https://blog.learngoprogramming.com
|
||||
//
|
||||
// Copyright © 2018 Inanc Gumus
|
||||
// Learn Go Programming Course
|
||||
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
||||
//
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"strconv"
|
||||
"time"
|
||||
)
|
||||
|
||||
type book struct {
|
||||
title string
|
||||
price money
|
||||
published interface{}
|
||||
}
|
||||
|
||||
func (b book) print() {
|
||||
p := format(b.published)
|
||||
fmt.Printf("%-15s: %s - (%v)\n", b.title, b.price.string(), p)
|
||||
}
|
||||
|
||||
func format(v interface{}) string {
|
||||
var t int
|
||||
|
||||
switch v := v.(type) {
|
||||
case int:
|
||||
// book{title: "moby dick", price: 10, published: 118281600},
|
||||
t = v
|
||||
case string:
|
||||
// book{title: "odyssey", price: 15, published: "733622400"},
|
||||
t, _ = strconv.Atoi(v)
|
||||
default:
|
||||
// book{title: "hobbit", price: 25},
|
||||
return "unknown"
|
||||
}
|
||||
|
||||
// Mon Jan 2 15:04:05 -0700 MST 2006
|
||||
const layout = "2006/01"
|
||||
|
||||
u := time.Unix(int64(t), 0)
|
||||
return u.Format(layout)
|
||||
}
|
||||
23
interfaces/07-type-switch/game.go
Normal file
23
interfaces/07-type-switch/game.go
Normal file
@@ -0,0 +1,23 @@
|
||||
// For more tutorials: https://blog.learngoprogramming.com
|
||||
//
|
||||
// Copyright © 2018 Inanc Gumus
|
||||
// Learn Go Programming Course
|
||||
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
||||
//
|
||||
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
type game struct {
|
||||
title string
|
||||
price money
|
||||
}
|
||||
|
||||
func (g *game) print() {
|
||||
fmt.Printf("%-15s: %s\n", g.title, g.price.string())
|
||||
}
|
||||
|
||||
func (g *game) discount(ratio float64) {
|
||||
g.price *= money(1 - ratio)
|
||||
}
|
||||
39
interfaces/07-type-switch/list.go
Normal file
39
interfaces/07-type-switch/list.go
Normal file
@@ -0,0 +1,39 @@
|
||||
// For more tutorials: https://blog.learngoprogramming.com
|
||||
//
|
||||
// Copyright © 2018 Inanc Gumus
|
||||
// Learn Go Programming Course
|
||||
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
||||
//
|
||||
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
type printer interface {
|
||||
print()
|
||||
}
|
||||
|
||||
type list []printer
|
||||
|
||||
func (l list) print() {
|
||||
if len(l) == 0 {
|
||||
fmt.Println("Sorry. Our store is closed. We're waiting for the delivery 🚚.")
|
||||
return
|
||||
}
|
||||
|
||||
for _, it := range l {
|
||||
it.print()
|
||||
}
|
||||
}
|
||||
|
||||
func (l list) discount(ratio float64) {
|
||||
type discounter interface {
|
||||
discount(float64)
|
||||
}
|
||||
|
||||
for _, it := range l {
|
||||
if it, ok := it.(discounter); ok {
|
||||
it.discount(ratio)
|
||||
}
|
||||
}
|
||||
}
|
||||
23
interfaces/07-type-switch/main.go
Normal file
23
interfaces/07-type-switch/main.go
Normal file
@@ -0,0 +1,23 @@
|
||||
// For more tutorials: https://blog.learngoprogramming.com
|
||||
//
|
||||
// Copyright © 2018 Inanc Gumus
|
||||
// Learn Go Programming Course
|
||||
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
||||
//
|
||||
|
||||
package main
|
||||
|
||||
func main() {
|
||||
store := list{
|
||||
book{title: "moby dick", price: 10, published: 118281600},
|
||||
book{title: "odyssey", price: 15, published: "733622400"},
|
||||
book{title: "hobbit", price: 25},
|
||||
puzzle{title: "rubik's cube", price: 5},
|
||||
&game{title: "minecraft", price: 20},
|
||||
&game{title: "tetris", price: 5},
|
||||
&toy{title: "yoda", price: 150},
|
||||
}
|
||||
|
||||
store.discount(.5)
|
||||
store.print()
|
||||
}
|
||||
16
interfaces/07-type-switch/money.go
Normal file
16
interfaces/07-type-switch/money.go
Normal file
@@ -0,0 +1,16 @@
|
||||
// For more tutorials: https://blog.learngoprogramming.com
|
||||
//
|
||||
// Copyright © 2018 Inanc Gumus
|
||||
// Learn Go Programming Course
|
||||
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
||||
//
|
||||
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
type money float64
|
||||
|
||||
func (m money) string() string {
|
||||
return fmt.Sprintf("$%.2f", m)
|
||||
}
|
||||
19
interfaces/07-type-switch/puzzle.go
Normal file
19
interfaces/07-type-switch/puzzle.go
Normal file
@@ -0,0 +1,19 @@
|
||||
// For more tutorials: https://blog.learngoprogramming.com
|
||||
//
|
||||
// Copyright © 2018 Inanc Gumus
|
||||
// Learn Go Programming Course
|
||||
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
||||
//
|
||||
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
type puzzle struct {
|
||||
title string
|
||||
price money
|
||||
}
|
||||
|
||||
func (p puzzle) print() {
|
||||
fmt.Printf("%-15s: %s\n", p.title, p.price.string())
|
||||
}
|
||||
23
interfaces/07-type-switch/toy.go
Normal file
23
interfaces/07-type-switch/toy.go
Normal file
@@ -0,0 +1,23 @@
|
||||
// For more tutorials: https://blog.learngoprogramming.com
|
||||
//
|
||||
// Copyright © 2018 Inanc Gumus
|
||||
// Learn Go Programming Course
|
||||
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
||||
//
|
||||
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
type toy struct {
|
||||
title string
|
||||
price money
|
||||
}
|
||||
|
||||
func (t *toy) print() {
|
||||
fmt.Printf("%-15s: %s\n", t.title, t.price.string())
|
||||
}
|
||||
|
||||
func (t *toy) discount(ratio float64) {
|
||||
t.price *= money(1 - ratio)
|
||||
}
|
||||
Reference in New Issue
Block a user