Files
learngo/interfaces/09-stringer/book.go
2019-09-03 17:42:56 +03:00

29 lines
718 B
Go

// 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 book struct {
product
published timestamp
}
// book satisfies the fmt.Stringer
func (b *book) String() string {
// product.String() has a pointer receiver.
// That's why you need to manually take the product's address here.
//
// If you pass: "b.product", Go would pass it as a copy to Sprintf.
// In that case, Go can't deference b.product automatically.
// It's because: b.product would be different value—a copy.
return fmt.Sprintf("%s - (%s)", &b.product, b.published)
}