这里记录每周值得分享的 Go 语言相关内容,周日发布。本周刊开源(GitHub:polaris1119/golangweekly[1]),欢迎投稿,推荐或自荐文章/软件/资源等,请提交 issue[2] 。
鉴于一些人可能没法坚持把英文文章看完,因此,周刊中会尽可能推荐优质的中文文章。优秀的英文文章,我们的 GCTT 组织会进行翻译。
由于微信公众号不支持外链,文中大量链接可通过文末「阅读原文」查看。
题图:各大语言收入排行,来自 StackOverflow 最新调研
上期题目又是惨不忍睹,正确率 31%。以下代码输出什么?
package mainimport "fmt"
func main() {
var p [100]int
var m interface{} = [...]int{99: 0}
fmt.Println(p == m)
}
A:true;B:false;C:panic;D:编译失败
正确答案:A。
网友「上弦月」的解释挺到位的,直接引用;
A value x of non-interface type X and a value t of interface type T are comparable when values of type X are comparable and X implements T. They are equal if t's dynamic type is identical to X and t's dynamic value is equal to x. ——以上内容来自 https://go.dev/ref/spec#Operators
个人理解:
interface类型变量与非interface类型变量判等时,首先要求非interface类型实现了接口,否则编译不通过(本题接口方法集为空,我们认为所有类型都实现了该接口) 满足上一条的前提下,interface类型变量的动态类型、值均与非interface类型变量相同时,两个变量判等结果为true,结合array判等规则,答案为true 我看到题目的时候,感觉答案要么是true、要么是编译不过。试了一下发现能比较,然后去翻文档,发现了上面提到的第一个知识点,又是涨知识的一天。
本期来一道简单的题目。以下代码输出什么?
package mainimport "fmt"
func main() {
fmt.Println(09)
}
1、render 1.5 发布[3]
轻松 Render JSON,XML,二进制数据和 HTML 模板响应。
2、cobra 1.5.0 发布[4]
一个构建现代 CLI APP 的框架。
3、benthos 4.3 发布[5]
流处理。
4、panicparse 2.3 发布[6]
Panic 堆栈跟踪解析器和调试工具。
5、phonenumbers 1.1 发布[7]
Google 电话号码解析库的 Go 移植版。
6、clash 1.11 发布[8]
Go 中基于规则的隧道。
在使用Go开发的后台服务中,对于错误处理,一直以来都有多种不同的方案,本文探讨并提出一种从服务内到服务外的一个统一的传递、返回和回溯的完整方案,抛砖引玉,希望与大家一起讨论分享。
项目中遇到了可重入锁的需求和实现,具体记录下。
一款 Go 语言 的打桩框架,目标是让用户在单元测试中低成本的完成打桩,从而将精力聚焦于业务功能的开发。
第 148 期周刊的题目解析。
5、等等, 怎么使用 SetMemoryLimit?[9]
这是 Go1.19 将实现的功能。
1、h3-go[10]
层次空间索引系统。
2、critical[11]
TCL 解析器。
3、hertz[12]
一个 Golang 微服务 HTTP 框架。
4、gambas[13]
Go 的数据分析工具,类似 Python 中的 pandas。
5、ksql[14]
简单、强大的 SQL 库。这里是一篇介绍文章:https://betterprogramming.pub/golang-sql-problems-with-existing-libraries-145a037261b8。
1、viddy[15]
一个现代的 watch 命令。
2、tproxy[16]
分析 TCP 连接的工具
3、100 天学 Go 系列文章[17]
英文的。
4、K8S 指南[18]
GitHub 开源。
这个周刊每周日发布,同步更新在Go语言中文网[19]和微信公众号[20]。
微信搜索"Go语言中文网"或者扫描二维码,即可订阅。
polaris1119/golangweekly: https://github.com/polaris1119/golangweekly
[2]提交 issue: https://github.com/polaris1119/golangweekly/issues
[3]render 1.5 发布: https://github.com/unrolled/render
[4]cobra 1.5.0 发布: https://github.com/spf13/cobra/releases/tag/v1.5.0
[5]benthos 4.3 发布: https://github.com/benthosdev/benthos
[6]panicparse 2.3 发布: https://github.com/maruel/panicparse
[7]phonenumbers 1.1 发布: https://github.com/nyaruka/phonenumbers
[8]clash 1.11 发布: https://github.com/Dreamacro/clash
[9]等等, 怎么使用 SetMemoryLimit?: https://colobu.com/2022/06/20/how-to-use-SetMemoryLimit/
[10]h3-go: https://github.com/uber/h3-go
[11]critical: https://github.com/skx/critical/
[12]hertz: https://github.com/cloudwego/hertz
[13]gambas: https://github.com/jpoly1219/gambas
[14]ksql: https://github.com/VinGarcia/ksql
[15]viddy: https://github.com/sachaos/viddy
[16]tproxy: https://github.com/kevwan/tproxy
[17]100 天学 Go 系列文章: https://dev.to/mr_destructive/series/17548
[18]K8S 指南: https://github.com/mikeroyal/Kubernetes-Guide
[19]Go语言中文网: https://studygolang.com/go/weekly
[20]微信公众号: https://weixin.sogou.com/weixin?query=Go%E8%AF%AD%E8%A8%80%E4%B8%AD%E6%96%87%E7%BD%91