map 中 pair的使用
Posted 要坚持写博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了map 中 pair的使用相关的知识,希望对你有一定的参考价值。
map<int,int> q;
即q[1]=1;
map<string,int> q;
q[“abc”]=1;
cout<<q[“abc”]<<endl;------->>> 输出1。
map<pair<int,int>,int> q;
q[1,1]=1;
cout<<q[1,1]<<endl;------->>> 输出1。
以上是关于map 中 pair的使用的主要内容,如果未能解决你的问题,请参考以下文章
unordered_map的哈希HASH重载——举例unordered_map与pair联合使用
Kotlin集合操作 ⑤ ( Map 集合 | 获取 Map 值 | Map 遍历 | 可变 Map 集合 )