unordered_map判断为空
时间: 2023-11-09 15:06:27 浏览: 250
判断map对象是否为空等工具类
可以使用unordered_map的empty()函数来判断是否为空,如果为空则返回true,否则返回false。示例代码如下:
```c++
#include <iostream>
#include <unordered_map>
using namespace std;
int main() {
unordered_map<int, int> mp;
if (mp.empty()) {
cout << "mp is empty" << endl;
} else {
cout << "mp is not empty" << endl;
}
return 0;
}
```
阅读全文