在本文中,我們將討論 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
相關用法
- C++ is_unsigned用法及代碼示例
- C++ is_fundamental用法及代碼示例
- C++ is_scalar用法及代碼示例
- C++ is_pointer用法及代碼示例
- C++ is_polymorphic用法及代碼示例
- C++ is_rvalue_reference用法及代碼示例
- C++ is_class用法及代碼示例
- C++ is_trivial用法及代碼示例
- C++ is_void用法及代碼示例
- C++ is_final用法及代碼示例
- C++ is_signed用法及代碼示例
- C++ is_reference用法及代碼示例
- C++ is_pod用法及代碼示例
- C++ is_permutation()用法及代碼示例
- C++ is_abstract用法及代碼示例
- C++ is_arithmetic用法及代碼示例
- C++ is_const用法及代碼示例
- C++ is_standard_layout用法及代碼示例
- C++ is_lvalue_reference用法及代碼示例
- C++ isdigit()用法及代碼示例
注:本文由純淨天空篩選整理自Sunidhi Bansal大神的英文原創作品 is_empty template in C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。