随笔分类 - golang
摘要:https://blog.golang.org/pipelines
阅读全文
摘要:runtime\error.go // An errorString represents a runtime error described by a single string. type errorString string func (e errorString) RuntimeError(
阅读全文
摘要:真实世界的并发编程 https://jyywiki.cn/OS/2022/slides/7.slides#/2/3 高性能计算程序:特点 “A technology that harnesses the power of supercomputers or computer clusters to
阅读全文
摘要:func main() { go func() { for { log.Println("++++++") time.Sleep(time.Second) panic("+") } }() go func() { for { log.Println("=") } }() go func() { fo
阅读全文
摘要:https://talks.golang.org/2012/splash.article Go at Google: Language Design in the Service of Software Engineering Rob Pike Google, Inc. @rob_pike http
阅读全文
摘要:Go语言之父谈Go:大道至简-CSDN.NET https://www.csdn.net/article/2012-07-05/2807113-less-is-exponentially-more Go语言之父谈Go:大道至简 发表于2012-07-04 15:43| 69173次阅读| 来源CSD
阅读全文