go 定时器

Posted shhnwangjian

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了go 定时器相关的知识,希望对你有一定的参考价值。

go 定时器

package main

import (
	"fmt"
	"time"
)

func main() {
	t := time.NewTicker(time.Second)
	for v := range t.C {
		fmt.Println("hello, ", v)
	}
}

  • 一次定时器(官方不建议使用time.After,推荐time.NewTimer)
package main

import (
	"fmt"
	"time"
)

func main() {
	select {
		case <- time.After(time.Second):
			fmt.Println("after")
	}
}

上面代码一秒后执行

 

  • 超时控制
package main

import (
	"fmt"
	"runtime"
	"time"
)

func main() {
	num := runtime.NumCPU()
	runtime.GOMAXPROCS(num - 1)
	for i := 0; i < 16; i++ {
		go func() {
			for {
				t := time.NewTicker(time.Second)
				select {
				case <-t.C:
					fmt.Println("timeout")
				}
				t.Stop()
			}
		}()
	}

	time.Sleep(time.Second * 100)
}

备注:使用定时器后,需要关闭,不关闭存在内存泄漏风险。

以上是关于go 定时器的主要内容,如果未能解决你的问题,请参考以下文章

解决go: go.mod file not found in current directory or any parent directory; see ‘go help modules‘(代码片段

你知道的Go切片扩容机制可能是错的

Go使用Go语言打造定时提醒小工具,从基础到优化全方位探索

如何打断ticker定时器的阻塞状态(go)

[GO]定时器的停止

Go语言中时间函数及定时器的使用