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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。