来自 net/http 的源代码。的定义http.Header
是map[string][]string
。对?
但是为什么go run
下面的代码,我得到了结果:
0
2
func main() {
var header = make(http.Header)
header.Add("hello", "world")
header.Add("hello", "anotherworld")
var t = []string {"a", "b"}
fmt.Printf("%d\n", len(header["hello"]))
fmt.Print(len(t))
}