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


C++ is_empty用法及代码示例


C++ STL 的 std::is_empty 模板用于检查给定类型是否为空。此方法返回一个布尔值,显示给定类型是否为空。

用法

template < class T > struct is_empty;

参数:此模板包含单个参数 T(Trait 类),用于标识 T 是否为空类型。

返回值:此模板返回一个布尔值,如下所示:

  • True:如果类型为空。
  • False:如果类型不为空。

以下示例程序旨在说明 C++ STL 中的 std::is_empty 模板:



程序1::使用结构


// C++ program to illustrate
// std::is_empty template
  
#include <iostream>
#include <type_traits>
using namespace std;
  
// empty struct
struct GFG1 {
};
  
// struct with local variable
struct GFG2 {
    int variab;
};
  
// Struct with global variable
struct GFG3 {
    static int variab;
};
  
// Struct with virtual destructor
struct GFG4 {
    virtual ~GFG4();
};
  
// Driver code
int main()
{
    cout << boolalpha;
  
    cout << "Is GFG1 empty:"
         << is_empty<GFG1>::value
         << '\n';
    cout << "Is GFG2 empty:"
         << is_empty<GFG2>::value
         << '\n';
    cout << "Is GFG3 empty:"
         << is_empty<GFG3>::value
         << '\n';
    cout << "Is GFG4 empty:"
         << is_empty<GFG4>::value
         << '\n';
  
    return 0;
}
输出:
Is GFG1 empty:true
Is GFG2 empty:false
Is GFG3 empty:true
Is GFG4 empty:false

程序2::使用类


// C++ program to illustrate
// std::is_empty template
  
#include <iostream>
#include <type_traits>
using namespace std;
  
// empty class
class GFG1 {
};
  
// class with local variable
class GFG2 {
    int variab;
};
  
// class with global variable
class GFG3 {
    static int variab;
};
  
// class with virtual destructor
class GFG4 {
    virtual ~GFG4();
};
  
int main()
{
    cout << boolalpha;
    cout << "Is GFG1 empty:"
         << is_empty<GFG1>::value
         << '\n';
    cout << "Is GFG2 empty:"
         << is_empty<GFG2>::value
         << '\n';
    cout << "Is GFG3 empty:"
         << is_empty<GFG3>::value
         << '\n';
    cout << "Is GFG4 empty:"
         << is_empty<GFG4>::value
         << '\n';
  
    return 0;
}
输出:
Is GFG1 empty:true
Is GFG2 empty:false
Is GFG3 empty:true
Is GFG4 empty:false



相关用法


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