码迷,mamicode.com
首页 > 编程语言 > 详细

go 语言字典遍历

时间:2019-01-21 21:02:03      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:count   range   cap   lse   print   nbsp   main   UNC   bsp   

 

package main

import "fmt"

func main() {
    var countryCapitalMap map[string]string /*创建集合 */
    countryCapitalMap = make(map[string]string)

    /* map插入key - value对,各个国家对应的首都 */
    countryCapitalMap["France"] = "Paris"
    countryCapitalMap["Italy"] = "罗马"
    countryCapitalMap["Japan"] = "东京"
    countryCapitalMap["India "] = "新德里"

    /*使用键输出地图值 */
    for country := range countryCapitalMap {
        fmt.Println(country, "首都是", countryCapitalMap[country])
    }

    /*查看元素在集合中是否存在 */
    captial, ok := countryCapitalMap["美国"] /*如果确定是真实的,则存在,否则不存在 */
    fmt.Println(captial)
    fmt.Println(ok)
    if ok {
        fmt.Println("美国的首都是", captial)
    } else {
        fmt.Println("美国的首都不存在")
    }
}

输出

France 首都是 Paris
Italy 首都是 罗马
Japan 首都是 东京
India  首都是 新德里

false
美国的首都不存在

 

go 语言字典遍历

标签:count   range   cap   lse   print   nbsp   main   UNC   bsp   

原文地址:https://www.cnblogs.com/sea-stream/p/10300755.html

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