bool empty() const noexcept; |
// unordered_multiset::empty #include <iostream> #include <string> #include <unordered_set> int main () { std::unordered_multiset<std::string> first; std::unordered_multiset<std::string> second = {"mom","dad","son","daughter","son"}; 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_multiset::clear | 清除内容(公众成员函数) |
unordered_multiset::size | 返回元素个数(公众成员函数) |