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


C++ is_empty用法及代码示例


在本文中,我们将讨论 C++ STL 中 std::is_empty 模板的工作、语法和示例。

is_empty 是位于 <type_traits> 头文件下的模板。此模板用于检查给定的类 T 是否为空类。

什么是空类?

当类中没有存储数据时,类称为空类。空类满足以下条件 -

  • 除了长度为 0 的位域外,不得有非静态成员。
  • 必须没有虚基类或虚函数。
  • 必须没有基类。

用法

template <class T>is_empty;

参数

模板只能有类 T 的参数,并检查类 T 是否为空类。

返回值

它返回一个布尔值,如果给定类型是空类,则返回 true,如果给定类型不是空类,则返回 false。

示例

Input:class A{};
   is_empty<A>::value;
Output:true

Input:class B{ void fun() {} };
   is_empty<B>::value;
Output:true

示例

#include <iostream>
#include <type_traits>
using namespace std;
class TP_1 {
};
class TP_2 {
   int var;
};
class TP_3 {
   static int var;
};
class TP_4 {
   ~TP_4();
};
int main() {
   cout << boolalpha;
   cout << "checking for is_empty template for a class with no variable:"<< is_empty<TP_1>::value;
   cout <<"\nchecking for is_empty template for a class with one variable:"<< is_empty<TP_2>::value;
   cout <<"\nchecking for is_empty template for a class with one static variable:"<< is_empty<TP_3>::value;
   cout <<"\nchecking for is_empty template for a class with constructor:"<< is_empty<TP_4>::value;
   return 0;
}

输出

如果我们运行上面的代码,它将生成以下输出 -

checking for is_empty template for a class with no variable:true
checking for is_empty template for a class with one variable:false
checking for is_empty template for a class with one static variable:true
checking for is_empty template for a class with constructor:true

示例

#include <iostream>
#include <type_traits>
using namespace std;
struct TP_1 {
};
struct TP_2 {
   int var;
};
struct TP_3 {
   static int var;
};
struct TP_4 {
   ~TP_4();
};
int main() {
   cout << boolalpha;
   cout << "checking for is_empty template for a structure with no variable:"<< is_empty<TP_1>::value;
   cout <<"\nchecking for is_empty template for a structure with one variable:"<< is_empty<TP_2>::value;
   cout <<"\nchecking for is_empty template for a structure with one static variable:"<< is_empty<TP_3>::value;
   cout <<"\nchecking for is_empty template for a structure with constructor:"<< is_empty<TP_4>::value;
   return 0;
}

输出

如果我们运行上面的代码,它将生成以下输出 -

checking for is_empty template for a structure with no variable:true
checking for is_empty template for a structure with one variable:false
checking for is_empty template for a structure with one static variable:true
checking for is_empty template for a structure with constructor:true

相关用法


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