16 Star 63 Fork 47

ShirDon-廖显东 / Go语言高级开发与实战-随书代码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
1.5.5-map2.go 1.26 KB
一键复制 编辑 原始数据 按行查看 历史
ShirDon-廖显东 提交于 2021-12-28 09:45 . commit
//++++++++++++++++++++++++++++++++++++++++
// 《Go语言高级开发与实战》源码
//++++++++++++++++++++++++++++++++++++++++
// Author:廖显东(ShirDon)
// Blog:https://www.shirdon.com/
// 知乎:https://www.zhihu.com/people/shirdonl
// 公众号:源码大数据
// 仓库地址:https://gitee.com/shirdonl/goAdvanced
// 仓库地址:https://github.com/shirdonl/goAdvanced
//++++++++++++++++++++++++++++++++++++++++
package main
import (
"fmt"
)
func main() {
/* 使用interface{}初始化一个一维映射
* 关键点:interface{} 可以代表任意类型
* 原理知识点:interface{} 就是一个空接口,所有类型都实现了这个接口,所以它可以代表所有类型
*/
//mainMap := make(map[string]interface{})
mainMap := map[string]interface{}{}
subMap := make(map[string]string)
subMap["Key_1"] = "SubValue_1"
subMap["Key_2"] = "SubValue_2"
mainMap["Map"] = subMap
for key, val := range mainMap {
//此处必须实例化接口类型,即*.(map[string]string)
//subMap := val.(map[string]string)
for subKey, subVal := range val.(map[string]string) {
fmt.Printf("mapName=%s Key=%s Value=%s\n", key, subKey, subVal)
}
}
}
//mapName=Map Key=Key_1 Value=SubValue_1
//mapName=Map Key=Key_2 Value=SubValue_2
Go
1
https://gitee.com/shirdonl/goAdvanced.git
git@gitee.com:shirdonl/goAdvanced.git
shirdonl
goAdvanced
Go语言高级开发与实战-随书代码
0f051d9f4e35

搜索帮助

53164aa7 5694891 3bd8fe86 5694891