轻松一刻:Go 1.18修复了一个经典bug 2022-02-02 go 753 words 2 mins read 前言 大家在写Go的时候,初期应该都会遇到过下面的编译报错: xx declared but not used 比如下面的代码示例: 1 2 3 4 5 6 7 // example2.go package main func main() { a := 10 a = 1 } 执行go build Read more...
官方博文:Go 1.18 Beta 2发布 2022-02-01 go go1.18 beta 1310 words 3 mins read 前言 2022年1月31日,Go官方团队的Jeremy Faller和Steve Francia在Go官方博客网站上发表了一篇新文章,宣布Go官方 Read more...
Go Quiz: Google工程师的Go语言题目 2022-01-31 go quiz 面试题 844 words 2 mins read 面试题 Google工程师和Go语言布道者Valentin Deleplace会不定期分享一些Go语言的趣味题目。 我选取了最近的几道题目,给大家 Read more...
Go Quiz: 从Go面试题看defer的注意事项第3篇 2022-01-27 go 面试题 1102 words 3 mins read 面试题 这是Go Quiz系列中关于defer的第3篇,这道题目来源于真实的互联网项目里,也是Go初学者容易犯的错误之一。 1 2 3 4 5 6 7 8 9 10 11 Read more...
Go Quiz: 从Go面试题看channel在select场景下的注意事项 2022-01-23 go quiz 面试题 1433 words 3 mins read 面试题 这是Go Quiz系列中关于channel的第2篇,涉及channel被close后的特性,以及在select和channel一起使用时 Read more...