mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 05:11:49 +08:00
18 lines
405 B
Go
18 lines
405 B
Go
package main
|
|
import "fmt"
|
|
|
|
func main() {
|
|
slice1 := make([]int, 0, 10)
|
|
// load the slice, cap(slice1) is 10:
|
|
for i := 0; i < cap(slice1); i++ {
|
|
slice1 = slice1[0:i+1]
|
|
slice1[i] = i
|
|
fmt.Printf("The length of slice is %d\n", len(slice1))
|
|
}
|
|
|
|
// print the slice:
|
|
for i := 0; i < len(slice1); i++ {
|
|
fmt.Printf("Slice at %d is %d\n", i, slice1[i])
|
|
}
|
|
}
|