如何在Go中遍历map的所有元素?

huangapple go评论85阅读模式
英文:

How to iterate over all the elements of a map in Go?

问题

能否有使用过Go的人告诉我如何遍历一个map数据结构的所有元素,或者它是否无法被遍历?

英文:

> Possible Duplicate:
> Iterating over all the keys of a golang map

<!-- End of automatically inserted text -->

Could somebody having used go tell me how to look through all element of a map data structure, or it could not be traversed?

答案1

得分: 2

对于键值对,使用m中的每个键和值进行迭代,执行一些操作。

这是一个重复的问题,正如nemo所说。

英文:
for key, value := range m { /* do stuff here */ }

This is a duplicate as nemo said.

huangapple
  • 本文由 发表于 2012年9月22日 08:59:34
  • 转载请务必保留本文链接:https://go.coder-hub.com/12539830.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定