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


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


multiset::empty(函数是C++ STL中的内置函数,用于检查多集是否为空。如果多重集为空,则返回true,否则返回false。

用法:

multiset_name.empty()

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


返回值:如果多重集为空,则该函数返回true,否则返回false。

以下示例程序旨在说明multimap::empty()函数:

示例1:

// CPP program to demonstrate the 
// multiset::empty() function 
#include <bits/stdc++.h> 
using namespace std; 
int main() 
{ 
  
    int arr[] = { 15, 10, 15, 11, 10, 18, 18, 20, 20 }; 
  
    // initializes the set from an array 
    multiset<int> s(arr, arr + 9); 
  
    if (!s.empty()) 
        cout << "The multiset is not empty"; 
    else
        cout << "The multiset is empty"; 
    return 0; 
}
输出:
The multiset is not empty

示例2:

// CPP program to demonstrate the 
// multiset::empty() function 
#include <bits/stdc++.h> 
using namespace std; 
int main() 
{ 
    // declaration 
    multiset<int> s; 
  
    if (!s.empty()) 
        cout << "The multiset is not empty"; 
    else
        cout << "The multiset is empty"; 
    return 0; 
}
输出:
The multiset is empty


相关用法


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