怎样输出储存在map里的vector C++
map<string,vector<class>>,我想通过特定的key值找到相对应的value(也就是储存在vector里的内容),并且输出。用单纯的cout<<会有错...
map<string,vector<class> >,我想通过特定的key值找到相对应的value(也就是储存在vector里的内容),并且输出。用单纯的cout<<会有错误说no match for'operator''<<'in'std::cout<<....
最好是把整段代码能贴出来,谢谢~~~ 展开
最好是把整段代码能贴出来,谢谢~~~ 展开
展开全部
#include<stdio.h>
typedef map<string, vector<class>> MAPVect;
typedef MAPSTR::iterator IterVect;
int main()
{
vector<class> *pVect;
MAPVect mapVect;
//假设mapVect里已经存储的有值
//查找map
string strKey = ...;
IterVect itr = mapVect.find(strKey);
if (itr == mapVect.end())
{
return 0;
}
//遍历vector
pVect = (vector<class> *)&itr->second;
for (int i = 0 ;i<pVect->size(); i++)
{
printf("vector value:%...\n", pVect->class...);
}
return 0;
}
typedef map<string, vector<class>> MAPVect;
typedef MAPSTR::iterator IterVect;
int main()
{
vector<class> *pVect;
MAPVect mapVect;
//假设mapVect里已经存储的有值
//查找map
string strKey = ...;
IterVect itr = mapVect.find(strKey);
if (itr == mapVect.end())
{
return 0;
}
//遍历vector
pVect = (vector<class> *)&itr->second;
for (int i = 0 ;i<pVect->size(); i++)
{
printf("vector value:%...\n", pVect->class...);
}
return 0;
}
追问
。。。照着你的改了还是不行诶。。
追答
你把你的代码发我看下吧,上面你描述的内容很模糊,我没有办法给你精确的代码!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询