gpt4 book ai didi

c++ - 如何使用迭代器遍历 pair> 形式的映射

转载 作者:行者123 更新时间:2023-11-30 02:22:51 31 4
gpt4 key购买 nike

我定义的 map 是这样的

map <int,pair<int,int>> hmap;

如果有一个pair(2,pair(3,4))如何得到2 3 4个值,itr->first, itr->第二个不工作

最佳答案

If there is a pair(2,pair(3,4)) how to get 2 3 4 values [from an iterator itr to map<int,pair<int, int>>]

我想

itr->first           // 2
itr->second.first // 3
itr->second.second // 4

关于c++ - 如何使用迭代器遍历 pair<int,pair<int,int>> 形式的映射,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46854171/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com