A Tour of Go Map literals continued

时间:2023-03-09 18:52:08
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[] = uint8()
m2[] = uint8()
fmt.Println(m)
fmt.Println(m2)
}