Go语言map映射的基本操作

简介: 对比python, java都有对应的字典类型及哈希类型。 package main import ( "fmt" ) //main is the entry of the program func main() { dict1 := make(map[string...

对比python, java都有对应的字典类型及哈希类型。

package main

import (
	"fmt"

)

//main is the entry of the program
func main() {
	dict1 := make(map[string]int)
	
	dict2 := map[string]string{"Red": "#da1337", "Orange": "#e95a22"}
	
	colors := map[string]string{
		"AliceBlue": "#f0f8ff",
		"Coral": "#ff7F50",
		"DarkGray": "#a9a9a9",
		"ForestGreen": "#228b22",
	}
	
	delete(colors, "Coral")
	
	for key, value := range colors {
		fmt.Printf("Key: %s Value: %s\n", key, value)
	}
	
	
	fmt.Println(dict1, dict2)
}

  

目录
相关文章
|
16天前
|
存储 Go 索引
go语言中数组和切片
go语言中数组和切片
26 7
|
16天前
|
Go 开发工具
百炼-千问模型通过openai接口构建assistant 等 go语言
由于阿里百炼平台通义千问大模型没有完善的go语言兼容openapi示例,并且官方答复assistant是不兼容openapi sdk的。 实际使用中发现是能够支持的,所以自己写了一个demo test示例,给大家做一个参考。
|
16天前
|
程序员 Go
go语言中结构体(Struct)
go语言中结构体(Struct)
92 71
|
15天前
|
存储 Go 索引
go语言中的数组(Array)
go语言中的数组(Array)
100 67
|
16天前
|
存储 Go
go语言中映射
go语言中映射
32 11
|
18天前
|
Go
go语言for遍历映射(map)
go语言for遍历映射(map)
29 12
|
17天前
|
Go 索引
go语言使用索引遍历
go语言使用索引遍历
26 9
|
17天前
|
Go 索引
go语言使用range关键字
go语言使用range关键字
24 7
|
17天前
|
Go 索引
go语言修改元素
go语言修改元素
25 6
|
8天前
|
Go 数据安全/隐私保护 UED
优化Go语言中的网络连接:设置代理超时参数
优化Go语言中的网络连接:设置代理超时参数
下一篇
DataWorks