Timer, Ticker的区别引出变量的逃逸情况.引发的思考

百里 · · 410 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

Timer

Timer 定义后固定只执行一次,使用Reset会再触发一次.
timer := time.NewTimer(time.Second)   //Timer 定义后固定只执行一次,使用Reset会再触发一次.
//Timer的实现
    go func(t *time.Timer) {
        for {
            select {
            case <-t.C:
                fmt.Println("timer:", 22)
                t.Reset(time.Second)
            }

        }
    }(timer)

Ticker

Ticker一但被定义, 每隔一段时间会自动触发
ticker := time.NewTicker(time.Second) //Ticker一但被定义, 每隔一段时间会自动触发.

//Ticker的实现
    go func(t *time.Ticker) {
        for {
            select {
            case <-t.C:
                fmt.Printf("ticker:%v\n", 11)
            }
        }
    }(ticker) //

以上go func(){}另一种写, 不使用形参.

go tool compile -m timer.go

以下是编译的过程, 看不太懂. 只知道变量逃逸了. 望高手指教.
timer.go:41:15: inlining call to fmt.Printf
timer.go:51:16: inlining call to fmt.Println
timer.go:61:9: inlining call to time.(*Ticker).Stop
timer.go:62:10: inlining call to time.(*Timer).Stop
timer.go:63:14: inlining call to fmt.Println
timer.go:69:13: inlining call to time.(*Timer).Stop
timer.go:70:14: inlining call to time.(*Ticker).Stop
timer.go:25:13: inlining call to fmt.Println
timer.go:37:5: func literal escapes to heap
timer.go:37:5: func literal escapes to heap
timer.go:47:5: func literal escapes to heap
timer.go:47:5: func literal escapes to heap
timer.go:59:5: func literal escapes to heap
timer.go:59:5: func literal escapes to heap
timer.go:32:11: leaking param: stop
timer.go:67:5: func literal escapes to heap
timer.go:67:5: func literal escapes to heap
timer.go:41:15: io.Writer(os.Stdout) escapes to heap
timer.go:41:31: 11 escapes to heap
timer.go:51:16: io.Writer(os.Stdout) escapes to heap
timer.go:51:17: "timer:" escapes to heap
timer.go:51:27: 22 escapes to heap
timer.go:47:10: leaking param: t
timer.go:61:9: &time.t.r escapes to heap
timer.go:59:10: leaking param: t
timer.go:62:10: &time.t.r escapes to heap
timer.go:59:26: leaking param: t1
timer.go:63:14: io.Writer(os.Stdout) escapes to heap
timer.go:63:15: "回收资源" escapes to heap
timer.go:69:13: &time.t.r escapes to heap
timer.go:69:3: leaking closure reference timer
timer.go:70:14: &time.t.r escapes to heap
timer.go:70:3: leaking closure reference ticker
timer.go:37:10: Show.func1 t does not escape
timer.go:41:15: Show.func1 []interface {} literal does not escape
timer.go:51:16: Show.func2 []interface {} literal does not escape
timer.go:63:14: Show.func3 []interface {} literal does not escape
timer.go:13:14: make(chan struct {}) escapes to heap
timer.go:18:14: make(chan os.Signal) escapes to heap
timer.go:25:13: io.Writer(os.Stdout) escapes to heap
timer.go:25:14: "END" escapes to heap
timer.go:20:15: main syscall.SIGKILL does not escape
timer.go:20:15: main ... argument does not escape
timer.go:25:13: main []interface {} literal does not escape
<autogenerated>:1: os.(*File).close .this does not escape

扩展学习

关于堆栈和指针上的语言力学 https://www.ardanlabs.com/blo...


有疑问加站长微信联系(非本文作者)

本文来自:Segmentfault

感谢作者:百里

查看原文:Timer, Ticker的区别引出变量的逃逸情况.引发的思考

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

410 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传