在這里我們將看到不同類型的多態性。類型為 –
- Ad-Hoc包含參數化強制
Ad-Hoc 多態性稱為重載。這允許具有相同名稱的函數針對不同的類型以不同的方式起作用。函數和運算符都可以重載。有些語言不支持運算符重載,但函數重載很常見。
示例
#include<iostream> using namespace std; int add(int a, int b) { return a + b; } string add(string a, string b) { return a + b; //concatenate } int main() { cout << "Addition of numbers: " << add(2, 7) << endl; cout << "Addition of Strings: " << add("hello", "World") << endl; }
登錄后復制
輸出
Addition of numbers: 9 Addition of Strings: helloWorld
登錄后復制
包含多態性稱為子類型化。這允許使用基類指針和引用來指向派生類。這就是運行時多態性。在執行之前我們不知道實際對象的類型。我們需要 C++ 中的虛函數來實現這種包含多態性。
示例
#include<iostream> using namespace std; class Base { public: virtual void print() { cout << "This is base class." << endl; } }; class Derived : public Base { public: void print() { cout << "This is derived class." << endl; } }; int main() { Base *ob1; Base base_obj; Derived derived_obj; ob1 = &base_obj; //object of base class ob1->print(); ob1 = &derived_obj; //same pointer to point derived object ob1->print(); }
登錄后復制
輸出
This is base class. This is derived class.
登錄后復制
強制多態稱為強制轉換。當對象或基元被轉換為某種其他類型時,就會發生這種類型的多態性。鑄造有兩種類型。隱式轉換是使用編譯器本身完成的,顯式轉換是使用 const_cast、dynamic_cast 等完成的。
示例
#include<iostream> using namespace std; class Integer { int val; public: Integer(int x) : val(x) { } operator int() const { return val; } }; void display(int x) { cout << "Value is: " << x << endl; } int main() { Integer x = 50; display(100); display(x); }
登錄后復制
輸出
Value is: 100 Value is: 50
登錄后復制
參數多態性稱為早期綁定。這種類型的多態性允許對不同類型使用相同的代碼。我們可以通過使用模板來獲取它。
示例
#include<iostream> using namespace std; template <class T> T maximum(T a, T b) { if(a > b) { return a; } else { return b; } } int main() { cout << "Max of (156, 78): " << maximum(156, 78) << endl; cout << "Max of (A, X): " << maximum('A', 'X') << endl; }
登錄后復制
輸出
Max of (156, 78): 156 Max of (A, X): X
登錄后復制
以上就是多態性的類型 – 臨時、包含、參數化和強制的詳細內容,更多請關注www.xfxf.net其它相關文章!