Go语言中是否有自动创建嵌套结构的功能(autovivification)?

huangapple go评论108阅读模式
英文:

Is there autovivification for Go?

问题

在Go语言中是否有自动创建嵌套结构的功能(autovivification)?

正如@JimB正确指出的那样,我的定义并不那么严格。关于我的目标:在Python中,我们有一种非常优雅的“模拟”自动创建嵌套结构的方法:

  1. type Path map[string]interface{}
  2. func (p Path) Get(key string) interface{} {
  3. if val, ok := p[key]; ok {
  4. return val
  5. }
  6. p[key] = make(Path)
  7. return p[key]
  8. }

在Go语言中是否有类似的解决方案?

英文:

Is there autovivification for Go?

As @JimB correctly noticed, my definition is not that strict. About my goal: In Python we have a very elegant "emulation" for an autovivification:

  1. class Path(dict):
  2. def __missing__(self, key):
  3. value = self[key] = type(self)()
  4. return value

Is there a similar solution for Go?

答案1

得分: 4

如果键不存在或地图为nil,Go的映射将返回该类型的零值。

https://play.golang.org/p/sBEiXGfC1c

  1. var sliceMap map[string][]string
  2. // slice是一个nil []string
  3. slice := sliceMap["不存在的键"]
  4. var stringMap map[string]string
  5. // s是一个空字符串
  6. s := stringMap["不存在的键"]

由于具有数值值的映射在缺少条目时返回0,Go允许您在不存在的键上使用递增和递减运算符:

counters := map[string]int{}
counters["one"]++

英文:

Go maps will return a zero value for the type if the key doesn't exist, or the map is nil

https://play.golang.org/p/sBEiXGfC1c

  1. var sliceMap map[string][]string
  2. // slice is a nil []string
  3. slice := sliceMap["does not exist"]
  4. var stringMap map[string]string
  5. // s is an empty string
  6. s := stringMap["does not exist"]

Since a map with numeric values return will return 0 for missing entries, Go lets you use the increment and decrement operators on non-existent keys:

  1. counters := map[string]int{}
  2. counters["one"]++

答案2

得分: 1

此外,扩展JimB的答案,通过使用mapinterface{}type assertion的组合,您可以动态创建任何复杂的结构:

  1. type Obj map[interface{}]interface{}
  2. func main() {
  3. var o Obj
  4. o = Obj{
  5. "Name": "Bob",
  6. "Age": 23,
  7. 3: 3.14,
  8. }
  9. fmt.Printf("%+v\n", o)
  10. o["Address"] = Obj{"Country": "USA", "State": "Ohio"}
  11. fmt.Printf("%+v\n", o)
  12. o["Address"].(Obj)["City"] = "Columbus"
  13. fmt.Printf("%+v\n", o)
  14. fmt.Printf("City = %v\n", o["Address"].(Obj)["City"])
  15. }

输出结果(在Go Playground上尝试):

  1. map[Name:Bob Age:23 3:3.14]
  2. map[Age:23 3:3.14 Address:map[Country:USA State:Ohio] Name:Bob]
  3. map[3:3.14 Address:map[Country:USA State:Ohio City:Columbus] Name:Bob Age:23]
  4. City = Columbus
  5. [1]: https://golang.org/ref/spec#Type_assertions
  6. [2]: https://play.golang.org/p/Q30UxRJ5H1
英文:

Also extending JimB's answer, with the combination of map, interface{} and type assertion, you can dynamically create any complex structures:

  1. type Obj map[interface{}]interface{}
  2. func main() {
  3. var o Obj
  4. o = Obj{
  5. "Name": "Bob",
  6. "Age": 23,
  7. 3: 3.14,
  8. }
  9. fmt.Printf("%+v\n", o)
  10. o["Address"] = Obj{"Country": "USA", "State": "Ohio"}
  11. fmt.Printf("%+v\n", o)
  12. o["Address"].(Obj)["City"] = "Columbus"
  13. fmt.Printf("%+v\n", o)
  14. fmt.Printf("City = %v\n", o["Address"].(Obj)["City"])
  15. }

Output (try it on the Go Playground):

  1. map[Name:Bob Age:23 3:3.14]
  2. map[Age:23 3:3.14 Address:map[Country:USA State:Ohio] Name:Bob]
  3. map[3:3.14 Address:map[Country:USA State:Ohio City:Columbus] Name:Bob Age:23]
  4. City = Columbus

huangapple
  • 本文由 发表于 2016年12月31日 00:11:14
  • 转载请务必保留本文链接:https://go.coder-hub.com/41399222.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定