Learn Golang in Days - Day 12

笑吧小鸟 · · 506 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

Learn Golang in Days - Day 12

要点


  • Map是一种无序的键值对的集合。Map最重要的一点是通过Key可以检索到Valu.
  • Map是使用hash表来实现的

定义map


  • 使用map关键字定义
  • 使用make函数定义
// 声明变量,默认map是nil
var map_variable map[key_data_type]value_data_type
var countryMap map[string]string

// 使用make函数来定义
map_variable := make(map[key_data_type]value_data_type)
countryMap := make(map[string]string)

//定义并初始化
var countryMap := map[string]string{"Janpa":"Tokyo","USA":"Washington D.C."}

实例



import "fmt"

func main() {
    // 定义map
    var countrycapitalmap map[string]string
    countrycapitalmap = make(map[string]string)

    countrycapitalmap["france"] = "pairs"
    countrycapitalmap["italy"] = "roma"
    countrycapitalmap["japan"] = "tokya"

    //遍历输出
    for counry := range countrycapitalmap {
        fmt.Printf("countrymap[\"%s\"]=%s\n", counry, countrycapitalmap[counry])
    }

    // 查看元素是否在集合中存在
    capital ,ok := countrycapitalmap["france"]
    if(ok){
        fmt.Printf("法国的首都是%s\n", capital)
    }else{
        fmt.Printf("集合中未找到寻找的键\n")
    }

    capital ,ok = countrycapitalmap["德国"]
    if(ok){
        fmt.Printf("德国的首都是%s\n", capital)
    }else{
        fmt.Printf("集合中未找到寻找的键德国\n")
    }
}

delete() 函数,删除元素


  • delete() 函数删除集合中的元素,参数为map和其对应的键
  • delete(Map, item)
package main

import "fmt"

func main() {
    // 定义map
    var countryMap map[string]string
    countryMap = make(map[string]string)

    countryMap1 := map[string]string{"Japan": "Tokyo", "China": "Beijing"}
    countryMap["Japan"] = "Tokyo"

    //遍历
    fmt.Println("------ 删除前 遍历 -----------")
    for country := range countryMap1 {
        fmt.Printf("countryMap1[%s]=%s\n", country, countryMap1[country])
    }

    // 删除元素
    delete(countryMap1, "China")

    //遍历
    fmt.Println("------ 删除后 遍历 -----------")
    for country := range countryMap1 {
        fmt.Printf("countryMap1[%s]=%s\n", country, countryMap1[country])
    }
}

有疑问加站长微信联系(非本文作者)

本文来自:简书

感谢作者:笑吧小鸟

查看原文:Learn Golang in Days - Day 12

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

506 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传