1 回答
TA贡献1805条经验 获得超10个赞
首先,简化你的代码,
package main
import "fmt"
func populateSlice(offset int) []string {
letters := []string{"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "OP", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"}
lo, hi := offset, offset+10
if hi > len(letters) {
hi = len(letters)
}
if lo < 0 || lo >= hi {
return nil
}
return letters[lo:hi:hi]
}
func main() {
var bigSlice []string
for offset := 0; ; {
smallSlice := populateSlice(offset)
fmt.Printf("smallSlice: %#v\n", smallSlice)
if len(smallSlice) == 0 {
break
}
bigSlice = append(bigSlice, smallSlice...)
offset += len(smallSlice)
}
bigSlice = bigSlice[:len(bigSlice):len(bigSlice)]
fmt.Printf("bigSlice: %#v\n", bigSlice)
}
游乐场:https://play.golang.org/p/sRqazV_luol
输出:
smallSlice: []string{"a", "b", "c", "d", "e", "f", "g", "h", "i", "j"}
smallSlice: []string{"k", "l", "m", "n", "OP", "q", "r", "s", "t", "u"}
smallSlice: []string{"v", "w", "x", "y", "z"}
smallSlice: []string(nil)
bigSlice: []string{"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "OP", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"}
没有要删除的切片。没有内存泄漏。Go 有一个垃圾收集器。没有坏数据。
- 1 回答
- 0 关注
- 95 浏览
添加回答
举报