C++ 多態(tài)
c++ 多態(tài)
多態(tài)按字面的意思就是多種形態(tài)。當類之間存在層次結(jié)構(gòu),并且類之間是通過繼承關(guān)聯(lián)時,就會用到多態(tài)。
c++ 多態(tài)意味著調(diào)用成員函數(shù)時,會根據(jù)調(diào)用函數(shù)的對象的類型來執(zhí)行不同的函數(shù)。
下面的實例中,基類 shape 被派生為兩個類,如下所示:
#include using namespace std; class shape { protected: int width, height; public: shape( int a=0, int b=0) { width = a; height = b; } int area() { cout << "parent class area :" <