func main() {
var data = map[string]string{}
data["a"] = "x"
data["b"] = "x"
data["c"] = "x"
fmt.Println(data)
}
It runs.
func main() {
var data = map[string][]string{}
data["a"] = append(data["a"], "x")
data["b"] = append(data["b"], "x")
data["c"] = append(data["c"], "x")
fmt.Println(data)
}
It also runs.
func main() {
var w = map[string]string{}
var data = map[string]map[string]string{}
w["w"] = "x"
data["a"] = w
data["b"] = w
data["c"] = w
fmt.Println(data)
}
It runs again!
func main() {
var data = map[string]map[string]string{}
data["a"]["w"] = "x"
data["b"]["w"] = "x"
data["c"]["w"] = "x"
fmt.Println(data)
}
But it fails!?
Is there a problem with nested maps in Go? Or is there no multiple bracket support for nested maps?
The zero value for map types is
nil
. It is not yet initialized. You cannot store values in anil
map, that's a runtime panic.In your last example you initialize the (outer)
data
map, but it has no entries. When you index it likedata["a"]
, since there is no entry with"a"
key in it yet, indexing it returns the zero value of the value type which isnil
for maps. So attempting to assign todata["a"]["w"]
is a runtime panic.You have to initialize a map first before storing elements in it, for example:
Output (try it on the Go Playground):
Note that when you declare a variable of map type and initialize it with a composite literal (as in
var data = map[string]string{}
), that also counts as initializing.Note that you may also initialize your nested maps with a composite literal:
Output is the same. Try it on the Go Playground.
In addition to icza's answer. Map initialization can be written in short form:
Output is the same. Try it on the Go Playground. The key "d" added to demonstrate the mapping with an empty map.
While the most straightforward answer to this question is to initialize your nested maps as previously described, there is another potential option depending on your access pattern. If you need a truly hierarchical system of maps, then the previous answers are just fine. However, if you simply need to look up values in the map using multiple facets, read on!
It is totally acceptable for maps to use structs as keys (in fact, anything that is comparable can be used). Thus, you can use a single map with struct keys like this example from the Golang blog, which is a hit counter that tracks page hits by country:
I don't see maps like this often enough, instead many people reach for the nested variant first, which I think may not always be the right fit.