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


C++ unordered_set empty()用法及代碼示例


unordered_set::empty是C++ STL中的內置函數,用於檢查unordered_set容器是否為空。如果unordered_set容器為空,則返回True,否則返回False。

用法

map_name.empty()

參數:該函數不接受任何參數。


返回值:如果unordered_set容器為空,則返回布爾值True,否則返回false。

以下示例程序旨在說明上述函數:

示例1:

// C++ program to illustrate the 
// unordered_set::empty function 
#include <iostream> 
#include <unordered_set> 
using namespace std; 
  
int main() 
{ 
  
    // declaration 
    unordered_set<int> sample; 
  
    // Check whether the unordered_set is empty 
    if (sample.empty() == true) 
        cout << "true" << endl; 
    else
        cout << "false" << endl; 
  
    // Insert a value 
    sample.insert(5); 
  
    // Now check whether it is empty 
    if (sample.empty() == true) 
        cout << "true" << endl; 
    else
        cout << "false" << endl; 
  
    return 0; 
}
輸出:
true
false

示例2:

// C++ program to illustrate the 
// unordered_set::empty function 
#include <iostream> 
#include <unordered_set> 
using namespace std; 
  
int main() 
{ 
    // declaration 
    unordered_set<int> uset; 
  
    // Insert a value 
    uset.insert({ 5, 6, 7, 8 }); 
    // Check whether the unordered_set is empty 
    if (uset.empty() == true) 
        cout << "true" << endl; 
    else
        cout << "false" << endl; 
  
    return 0; 
}
輸出:
false


相關用法


注:本文由純淨天空篩選整理自tufan_gupta2000大神的英文原創作品 unordered_set empty() function in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。