码迷,mamicode.com
首页 > 其他好文 > 详细

自考新教材-p266

时间:2020-01-12 19:55:00      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:ace   using   apple   width   space   ios   hit   iostream   namespace   

抽象类示例

源程序:

#include <iostream>

using namespace std;

class A{

private:

int a;

public:

virtual void print()=0;

void func1(){

cout<<"func1"<<endl;

}

};

class B:public A{

public:

void print();

void func1(){

cout<<"B_func1"<<endl;

}

};

void B::print(){

cout<<"B_print"<<endl;

}

int main(){

//A a;

//A *p = new A;

//A b[2];

A *pa;

A *pb = new B;

pb->print();

B b;

A *pc = &b;

pc->func1();

return 0;

}

运行结果:

技术图片

自考新教材-p266

标签:ace   using   apple   width   space   ios   hit   iostream   namespace   

原文地址:https://www.cnblogs.com/duanqibo/p/12183384.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!