1 2 3 4 5 6 7 8 9 10 11 12
|
// unordered_map::empty
#include <iostream>
#include <unordered_map>
int main ()
{
std::unordered_map<int,int> first;
std::unordered_map<int,int> second = {{1,10},{2,20},{3,30}};
std::cout << "first " << (first.empty() ? "is empty" : "is not empty" ) << std::endl;
std::cout << "second " << (second.empty() ? "is empty" : "is not empty" ) << std::endl;
return 0;
}
|