在Go語言中,可以使用time包中的Timer來創(chuàng)建定時(shí)器。定時(shí)器可以用來在一定時(shí)間后執(zhí)行特定的操作。以下是一個(gè)簡(jiǎn)單的例子:
package main
import (
"fmt"
"time"
)
func main() {
fmt.Println("Start")
timer1 := time.NewTimer(2 * time.Second)
<-timer1.C
fmt.Println("Timer 1 expired")
timer2 := time.NewTimer(1 * time.Second)
go func() {
<-timer2.C
fmt.Println("Timer 2 expired")
}()
stop2 := timer2.Stop()
if stop2 {
fmt.Println("Timer 2 stopped")
}
}
在上面的例子中,我們首先創(chuàng)建了兩個(gè)定時(shí)器timer1和timer2,分別在2秒和1秒后觸發(fā)。然后通過<-timer1.C和<-timer2.C來等待定時(shí)器的觸發(fā)。另外,我們還可以通過timer.Stop()來主動(dòng)停止定時(shí)器的觸發(fā)。