码迷,mamicode.com
首页 > 其他好文 > 详细

A Tour of Go Map literals continued

时间:2014-10-28 00:33:22      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   sp   div   on   log   bs   

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

标签:style   blog   color   ar   sp   div   on   log   bs   

原文地址:http://www.cnblogs.com/ghgyj/p/4055473.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!