[GO]定时器的停止

Posted baylorqu

tags:

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

package main

import (
    "time"
    "fmt"
)

func main() {
    timer := time.NewTimer(3 * time.Second)
    go func() {
        <-timer.C
        fmt.Println("子协程可以打印了,因为定时器的时间到")
    }()

    timer.Stop()
    for true {

    }
}

这段代码执行后不会打印任何东西,因为主协程和子协程的执行几乎是同时的,那么它的打印自然不会被执行。

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

定时任务莫名停止,Spring 定时任务存在 Bug??

自动刷新android片段,直到满足条件

go语言从例子开始之Example32.打点器

Go组件学习——cron定时器

[Go] 通过 17 个简短代码片段,切底弄懂 channel 基础

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