C++ 虚函数
虚函数语法:
virtual 类型 名称(){}
实际上就是用virtual来限定成员函数。它就成了虚函数了。
虚函数声明只能出现在类定义中的函数原型声明中,而不能在成员函数实现的时候。
多态要满足三个条件才可以:
First: 赋值兼容 (就是由同一个基类派生出来)
Second:要声明虚函数
Third:由成员函数来调用虚函数 或者 通过指针访问虚函数 或者 通过引用来访问虚函数。
下面来看一个例子吧。
View Code
#include "iostream" #include "cstring" #include "string" #include "cstdio" using namespace std; class base{ public: virtual void display() const{ cout<<"I come from base"<<endl; } }; class base1:public base{ public: virtual void display() const{ cout<<"I come from base1"<<endl; } }; class base2:public base1{ //这里写base或者base1都是一样的效果。 virtual void display() const{ cout<<"I come from base2"<<endl; } }; void fun(base *ptr){ ptr->display(); } int main(){ base Base; base1 Base1; base2 Base2; fun(&Base); fun(&Base1); fun(&Base2); return 0; }
posted on 2012-04-21 21:01 More study needed. 阅读(206) 评论(0) 编辑 收藏 举报