标签:style blog color ar sp div on log bs
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) }
标签:style blog color ar sp div on log bs
原文地址:http://www.cnblogs.com/ghgyj/p/4055450.html