the-little-go-book_ZH_CN icon indicating copy to clipboard operation
the-little-go-book_ZH_CN copied to clipboard

《The Little Go Book》中文译本,中文正式名《Go简易教程》

Results 2 the-little-go-book_ZH_CN issues
Sort by recently updated
recently updated
newest added

1. Loosely应该是不严格? 2. 代码里是25个元素 3. This changes how you code. 的翻译修正 4. 好像有不是很通顺的地方

`func main() { scores := make([]int, 0, 5) c := cap(scores) fmt.Println(c) for i := 0; i < 25; i++ { scores = append(scores, i) // 如果容量已经改变,go为了容下这些新数据,不得不增长数组的长度 if cap(scores) !=...