std::multimap 打印所有元素
时间: 2023-04-11 18:00:32 浏览: 130
每天学点C++(C++实例教程:教程+源码)map容器.zip
可以使用迭代器遍历 multimap 中的所有元素,然后打印出来。以下是示例代码:
```c++
#include <iostream>
#include <map>
int main() {
std::multimap<int, std::string> myMap = {{1, "apple"}, {2, "banana"}, {1, "orange"}};
for (auto it = myMap.begin(); it != myMap.end(); ++it) {
std::cout << it->first << " : " << it->second << std::endl;
}
return 0;
}
```
输出结果为:
```
1 : apple
1 : orange
2 : banana
```
阅读全文