當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。