Recientemente ha recoger el Go, y ahora confundido con el siguiente código:Re-cortar en Golang
package main
import "fmt"
func main() {
a := make([]int, 5)
printSlice("a", a)
b := make([]int, 0, 5)
printSlice("b", b)
c := b[:2]
printSlice("c", c)
d := c[2:5]
printSlice("d", d)
}
func printSlice(s string, x []int) {
fmt.Printf("%s len=%d cap=%d %v\n",
s, len(x), cap(x), x)
}
Y el resultado:
a len=5 cap=5 [0 0 0 0 0]
b len=0 cap=5 []
c len=2 cap=5 [0 0] //why the capacity of c not 2 but 5 instead
d len=3 cap=3 [0 0 0]
cualquier ayuda se agradece.
Están llegando rebanadas con su propia capacidad (vaya 1.2). Ver [mi respuesta a continuación] (http://stackoverflow.com/a/18911267/6309) – VonC