golang的休眠可以使用time包中的sleep。
函数原型为: (推荐学习:go)
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 )
Atas ialah kandungan terperinci golang sleep为什么没有返回值. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!