golang的休眠可以使用time包中的sleep。
函数原型为:
func Sleep(d Duration)
其中的Duration定义为:
type Duration int64
Duration的单位为 nanosecond。
为了便于使用,time中定义了时间常量:
const (
Nanosecond Duration = 1
Microsecond = 1000 * Nanosecond
Millisecond = 1000 * Microsecond
Second = 1000 * Millisecond
Minute = 60 * Second
Hour = 60 * Minute
)
Example
下面实现休眠2秒功能。
package main
import ( "fmt" "time" ) func main() { fmt.Println("begin") time.Sleep(time.Duration(2)*time.Second) fmt.Println("end") }
原文链接:https://www.f2er.com/go/187879.html