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


C++ is_polymorphic用法及代碼示例


在本文中,我們將討論 C++ STL 中 std::is_polymorphic 模板的工作、語法和示例。

is_polymorphic 是 C++ 中 <type_traits> 頭文件下的模板。此模板用於檢查該類是否為多態類,並相應地返回 true 或 false 結果。

什麽是多態類?

從聲明虛函數的抽象類中聲明虛函數的類。此類具有在其他類中聲明的虛函數的聲明。

用法

template <class T> is_polymorphic;

參數

模板隻能有類型 T 的參數,並檢查給定類型是否為多態類。

返回值

它返回一個布爾值,如果給定類型是多態類,則返回 true,如果給定類型不是多態類,則返回 false。

示例

Input:class B { virtual void fn(){} };
   class C:B {};
   is_polymorphic<B>::value;
Output:True

Input:class A {};
   is_polymorphic<A>::value;
Output:False

示例

#include <iostream>
#include <type_traits>
using namespace std;
struct TP {
   virtual void display();
};
struct TP_2:TP {
};
class TP_3 {
   virtual void display() = 0;
};
struct TP_4:TP_3 {
};
int main() {
   cout << boolalpha;
   cout << "Checking for is_polymorphic:";
   cout << "\n structure TP with one virtual function:"<<is_polymorphic<TP>::value;
   cout << "\n structure TP_2 inherited from TP:"<<is_polymorphic<TP_2>::value;
   cout << "\n class TP_3 with one virtual function:"<<is_polymorphic<TP_3>::value;
   cout << "\n class TP_4 inherited from TP_3:"<< is_polymorphic<TP_4>::value;
   return 0;
}

輸出

如果我們運行上麵的代碼,它將生成以下輸出 -

Checking for is_polymorphic:
structure TP with one virtual function:true
structure TP_2 inherited from TP:true
class TP_3 with one virtual function:true
class TP_4 inherited from TP_3:true

示例

#include <iostream>
#include <type_traits>
using namespace std;
struct TP {
   int var;
};
struct TP_2 {
   virtual void display();
};
class TP_3:TP_2 {
};
int main() {
   cout << boolalpha;
   cout << "Checking for is_polymorphic:";
   cout << "\n structure TP with one variable:"<<is_polymorphic<TP>::value;
   cout << "\n structure TP_2 with one virtual function:"<<is_polymorphic<TP_2>::value;
   cout << "\n class TP_3 inherited from structure TP_2:"<<is_polymorphic<TP_3>::value;
   return 0;
}

輸出

如果我們運行上麵的代碼,它將生成以下輸出 -

Checking for is_polymorphic:
structure TP with one variable:false
structure TP_2 with one virtual function:true
class TP_3 inherited from structure TP_2:true

相關用法


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