标签:pac golang 方案 class cap 对应关系 .com 影响 lang
package main
import (
"fmt"
)
func main() {
/*
a := [10]int{}
fmt.Println(a)
s1 := a[5:]
// s1 := a[5:len(a)]
// s1 := a[5:10]
fmt.Println(s1)
*/
s1 := make([]int,3,10)
fmt.Println(s1,len(s1),cap(s1))
}
标签:pac golang 方案 class cap 对应关系 .com 影响 lang
原文地址:https://www.cnblogs.com/Csir/p/9292146.html