虚函数重写

Posted zhuh102

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了虚函数重写相关的知识,希望对你有一定的参考价值。

// 单继承虚函数无overload.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"

class Parent{
public:
virtual void fun1(){
}
virtual void fun2(){
}
};

class Sun:public Parent{
public:
virtual void fun3(){
}
virtual void fun4(){
}
};


class Parent1{
public:
virtual void fun1(){
printf("Parent1======fun1======\n");
}
virtual void fun2(){
printf("Parent1======fun2======\n");
}
};

class Sun1:public Parent1{
public:
virtual void fun1(){ //虚函数fun1重写
printf("Sun======= fun1=======\n");
}
virtual void fun2(){ //虚函数fun2重写
printf("Sun======= fun2=======\n");
}
};


void test1(){ //测试虚函数无重写函数
Sun sun;
Sun* ps=&sun;
printf(" 对象首地址即this的地址是:%x\n",ps); //18ff44
int* point=(int*)ps;
int* addr=(int*)(*point);
printf("虚函数的地址为:%x\n",addr);
sun.fun1();

for(int i=0;i<4;i++){
printf("%x\n",*(addr+i));
}
}

void test2(){
Sun1 sun;
Parent1 parent1;
Sun1* ps=&sun;
printf(" 对象首地址即this的地址是:%x\n",ps); //
int* point=(int*)ps;
int* addr=(int*)(*point);
printf("虚函数的地址为:%x\n",addr);
sun.fun1();
parent1.fun1();
for(int i=0;i<4;i++){
printf("%x\n",*(addr+i));
}
}


int main(int argc, char* argv[])
{
test2();
printf("Hello World!\n");
return 0;
}

 

以上是关于虚函数重写的主要内容,如果未能解决你的问题,请参考以下文章

Qt如何重写虚函数

delphi中覆盖override父类的静态方法和虚函数有啥不同?

C++ 虚函数(virtual) 和纯虚函数(pure virtual) 的区别

C++父类中声明了一个虚函数以后 是否在子类 以及子类的子类中 都要声明并重写这个函数?

虚函数重写

C++进阶:多态多态的构成条件 | 虚函数的重写 | 抽象类 | 多态的原理 | 多继承的虚函数表