您好,登錄后才能下訂單哦!
#ifndef VIRTUAL1
#define VIRTUAL1
#include<iostream>
using namespace std;
class Number{
public:
Number(int i){ x = i; }
virtual void show() = 0;
protected:
int x;
};
class dec_type :public Number{//這里必須公有繼承,否則派生類對象做實(shí)參無法傳遞給基類的
//引用對象。
public:
dec_type(int i) :Number(i){}
void show(){
cout << dec << x<<endl;
}
};
class hex_type:public Number{
public:
hex_type(int i) :Number(i){}
void show(){
cout << hex << x<<endl;
}
};
class oct_type :public Number{
public:
oct_type(int i) :Number(i){}
void show(){
cout << oct << x<<endl;
}
};
#endif
#include"vitual1.h"
void fun(Number &n){//抽象類可以做引用
n.show();
}
int main(){
oct_type oc(50);
fun(oc);//派生類對象做參數(shù)傳給基類的引用
system("pause");
return 0;
}
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。