首页 > 代码库 > A Tour of Go Map literals continued
A Tour of Go Map literals continued
If the top-level type is just a type name, you can omit it from the elements of the literal.
package main import "fmt"type Vertex struct { Lat, Long float64}var m = map[string]Vertex { "Bell Labs": {40.68433,-74.39967}, "Google": {37.42202, -122.08408},}func main() { var m2 map[int]uint8 m2 = make(map[int]uint8) m2[12] = uint8(12) m2[1] = uint8(1) fmt.Println(m) fmt.Println(m2)}
A Tour of Go Map literals continued
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。