C++ 多態(tài)
c++ 多態(tài)
多態(tài)按字面的意思就是多種形態(tài)。當(dāng)類之間存在層次結(jié)構(gòu),并且類之間是通過繼承關(guān)聯(lián)時(shí),就會(huì)用到多態(tài)。
c++ 多態(tài)意味著調(diào)用成員函數(shù)時(shí),會(huì)根據(jù)調(diào)用函數(shù)的對(duì)象的類型來執(zhí)行不同的函數(shù)。
下面的實(shí)例中,基類 shape 被派生為兩個(gè)類,如下所示:
#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 :" <