bool empty() const noexcept; |
// unordered_multimap::empty #include <iostream> #include <unordered_map> int main () { std::unordered_multimap<int,int> first; std::unordered_multimap<int,int> second = {{1,10},{2,20},{1,15}}; 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; } |
unordered_multimap::clear | 清除内容(公众成员函数) |
unordered_multimap::erase | 删除元素(公众成员函数) |