//
pkg.gl
Category
github.com/pandaychen/golang_in_action
timer
package
0.0.0-20240823084134-7f2187b4bc00
Repository:
https://github.com/pandaychen/golang_in_action.git
Documentation:
pkg.go.dev
Overview
Versions
1
Dependencies
2
Dependents
0
Files
40 SLOC
#
README
定时器区别
ticker: ticker只要定义完成,从此刻开始计时,不需要任何其他的操作,每隔固定时间都会触发。
timer: 使用timer定时器,超时后需要重置,才能继续触发。