当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ unordered_multiset empty()用法及代码示例


unordered_multiset::empty()是C++ STL中的内置函数,该函数返回布尔值。如果unordered_multiset容器为空,则返回true。否则,它返回false。

用法:

unordered_multiset_name.empty()

参数:该函数不接受任何参数。


返回值:它返回一个布尔值,该值指示unordered_multiset是否为空。

以下示例程序旨在说明上述函数:

程序1:

// C++ program to illustrate the 
// unordered_multiset::empty() function 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
  
    // declaration 
    unordered_multiset<int> sample; 
  
    // inserts element 
    sample.insert(11); 
    sample.insert(11); 
    sample.insert(11); 
    sample.insert(12); 
    sample.insert(13); 
    sample.insert(13); 
    sample.insert(14); 
  
    // if not empty then print the elements 
    if (sample.empty() == false) { 
        cout << "Elements:"; 
  
        for (auto it = sample.begin(); it != sample.end(); it++) { 
            cout << *it << " "; 
        } 
    } 
  
    // container is erased completely 
    sample.clear(); 
  
    if (sample.empty() == true) 
        cout << "\nContainer is empty"; 
    return 0; 
}
输出:
Elements:14 11 11 11 12 13 13 
Container is empty

程序2:

// C++ program to illustrate the 
// unordered_multiset::empty() function 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
  
    // declaration 
    unordered_multiset<char> sample; 
  
    // inserts element 
    sample.insert('a'); 
    sample.insert('a'); 
    sample.insert('b'); 
    sample.insert('c'); 
    sample.insert('d'); 
    sample.insert('d'); 
    sample.insert('d'); 
  
    // if not empty then print the elements 
    if (sample.empty() == false) { 
        cout << "Elements:"; 
  
        for (auto it = sample.begin(); it != sample.end(); it++) { 
            cout << *it << " "; 
        } 
    } 
  
    // container is erased completely 
    sample.clear(); 
  
    if (sample.empty() == true) 
        cout << "\nContainer is empty"; 
    return 0; 
}
输出:
Elements:a a b c d d d 
Container is empty


相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 unordered_multiset empty() function in C++STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。