favorites

收录了 2 篇文章 · 0 人关注

  • Golang优秀开源项目汇总(持续更新。。。)

    Golang优秀开源项目汇总(持续更新。。。) 我把这个汇总放在github上了, 后面更新也会在github上更新。 https://github.com/hackstoic/golang-open-source-projects 。 欢迎fork, star , watch, 提issue。 资料参考来源:http://studygolang.com/projects 监控系统 序号 名称 项目地址 简介 1 OpenFalcon http://github.com/open-falcon/...

  • Golang研学:如何掌握并用好defer(延迟执行)

    defer:在函数A内用defer关键字调用的函数B会在在函数A return后执行。 先看一个基础的例子,了解一下defer的效果 func main() { fmt.Println("in main func:", foo()) } func foo() int { i := 0 defer fmt.Println("in defer :", i) i = 1000 fmt.Println("in foo:", i) return i+24 } 这段代码运行后会打印出 in foo: 100...