mirror of
https://github.com/gopl-zh/gopl-zh.github.com.git
synced 2024-11-05 14:03:45 +00:00
50 lines
1.2 KiB
Go
50 lines
1.2 KiB
Go
|
// Copyright © 2016 Alan A. A. Donovan & Brian W. Kernighan.
|
||
|
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
||
|
|
||
|
package methods_test
|
||
|
|
||
|
import (
|
||
|
"strings"
|
||
|
"time"
|
||
|
|
||
|
"gopl.io/ch12/methods"
|
||
|
)
|
||
|
|
||
|
func ExamplePrintDuration() {
|
||
|
methods.Print(time.Hour)
|
||
|
// Output:
|
||
|
// type time.Duration
|
||
|
// func (time.Duration) Hours() float64
|
||
|
// func (time.Duration) Minutes() float64
|
||
|
// func (time.Duration) Nanoseconds() int64
|
||
|
// func (time.Duration) Seconds() float64
|
||
|
// func (time.Duration) String() string
|
||
|
}
|
||
|
|
||
|
func ExamplePrintReplacer() {
|
||
|
methods.Print(new(strings.Replacer))
|
||
|
// Output:
|
||
|
// type *strings.Replacer
|
||
|
// func (*strings.Replacer) Replace(string) string
|
||
|
// func (*strings.Replacer) WriteString(io.Writer, string) (int, error)
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
//!+output
|
||
|
methods.Print(time.Hour)
|
||
|
// Output:
|
||
|
// type time.Duration
|
||
|
// func (time.Duration) Hours() float64
|
||
|
// func (time.Duration) Minutes() float64
|
||
|
// func (time.Duration) Nanoseconds() int64
|
||
|
// func (time.Duration) Seconds() float64
|
||
|
// func (time.Duration) String() string
|
||
|
|
||
|
methods.Print(new(strings.Replacer))
|
||
|
// Output:
|
||
|
// type *strings.Replacer
|
||
|
// func (*strings.Replacer) Replace(string) string
|
||
|
// func (*strings.Replacer) WriteString(io.Writer, string) (int, error)
|
||
|
//!-output
|
||
|
*/
|