A Tour of Go Map literals
时间:2014-10-28 00:17:02
收藏:0
阅读:141
Map literals are like struct literals, but the keys are required.
package main import "fmt" type Vertex struct { Lat, Long float64 } var m = map[string]Vertex { "Bell Labs": Vertex { 40.6833, -74.39967, }, "Google": Vertex{ 37.42202, -122.08408, }, } func main() { fmt.Println(m) }
评论(0)