这里记录每周值得分享的 Go 语言相关内容,周日发布。本周刊开源(GitHub:polaris1119/golangweekly[1]),欢迎投稿,推荐或自荐文章/软件/资源等,请提交 issue[2] 。
鉴于一些人可能没法坚持把英文文章看完,因此,周刊中会尽可能推荐优质的中文文章。优秀的英文文章,我们的 GCTT 组织会进行翻译。
由于微信不支持外链,文中大量链接可通过文末「阅读原文」查看。
题图:golangweekly
上期题目,以下代码输出什么?
package mainimport "fmt"
func main() {
m := map[string]int{"uno": 1}
p := &m["uno"]
*p = 2
fmt.Println(m["uno"])
}
A:1;B:2;C:panic;D:不能编译
正确答案:D,该题正确率 36%。错误:
cannot take address of m["uno"] (map index expression of type int)
本期题目。以下代码输出什么?
package mainimport "fmt"
func main() {
const c = 8
a := &c
*a = 12
fmt.Println(*a)
}
1、plow 1.3 发布[3]
Go 实时 Web UI 和终端显示的高性能 HTTP 基准测试工具。
2、Logrus 1.9 发布[4]
功能丰富的结构化 Logger。
3、rqlite 7.6.0 发布[5]
基于 SQLite 分布式关系数据库。
4、usql 0.10 发布[6]
数据库的通用 cli 工具,可以认为是数据库的瑞士军刀。
1、GC 指南[7]
Go 官方的 GC 指南。
2、相比高人气的Rust、Go,为何 Java、C 在工具层面进展缓慢?
最受欢迎的高人气编程语言(2022):Rust,Typescript,Python,Go,C#,Kotlin,JavaScript。
集合是软件中的基本抽象。实现集合的方法有很多,例如 hash set、tree等。
7月18日,谷歌Go语言产品负责人Steve Francia在个人博客上发了篇长文,回顾总结自己在谷歌的6年生涯经历,并分享了离开的原因。
bitset 库实现了位集合及相关操作。
1、cpuid[8]
获取 CPU 详细信息。
2、graph[9]
用于创建图形数据结构并对其执行操作的泛型库。
3、flogo[10]
开源的事件驱动能力的生态系统。
1、lensm[11]
以源码对照方式查看 Go 汇编,还有一篇专门介绍的文章:https://www.storj.io/blog/lensm。
2、swag[12]
Swag 将 Go 的注释转换为 Swagger2.0 文档。
3、gotemplate[13]
在线快速测试 Go template。
4、gokey[14]
Go 中一个简单的无保险库密码管理器。
5、Go Time 第 238 期[15]
Go 是面向对象编程语言吗?
6、nezha[16]
Go 实现的自托管的轻量级服务器和网站监控和运维工具。
这个周刊每周日发布,同步更新在Go语言中文网[17]和微信公众号[18]。
微信搜索"Go语言中文网"或者扫描二维码,即可订阅。
polaris1119/golangweekly: https://github.com/polaris1119/golangweekly
[2]提交 issue: https://github.com/polaris1119/golangweekly/issues
[3]plow 1.3 发布: https://github.com/six-ddc/plow
[4]Logrus 1.9 发布: https://github.com/sirupsen/logrus
[5]rqlite 7.6.0 发布: https://github.com/rqlite/rqlite
[6]usql 0.10 发布: https://github.com/xo/usql
[7]GC 指南: https://go.dev/doc/gc-guide
[8]cpuid: https://github.com/klauspost/cpuid
[9]graph: https://github.com/dominikbraun/graph
[10]flogo: https://github.com/TIBCOSoftware/flogo
[11]lensm: https://github.com/loov/lensm
[12]swag: https://github.com/swaggo/swag
[13]gotemplate: https://gotemplate.io/
[14]gokey: https://github.com/cloudflare/gokey
[15]Go Time 第 238 期: https://changelog.com/gotime/238
[16]nezha: https://github.com/naiba/nezha
[17]Go语言中文网: https://studygolang.com/go/weekly
[18]微信公众号: https://weixin.sogou.com/weixin?query=Go%E8%AF%AD%E8%A8%80%E4%B8%AD%E6%96%87%E7%BD%91