英文:
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论