程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> C++ 繼承中子類與父類虛函數入棧順序 及父類私有虛函數的調用方式

C++ 繼承中子類與父類虛函數入棧順序 及父類私有虛函數的調用方式

編輯:C++入門知識

如果子類中有虛函數則先將子類的虛函數入棧,然後是父類的虛函數,如果子類重寫了父類的虛函數,則入棧的是子類重寫的函數,即重寫的子類的函數替換對應的父類的虛函數。

如://A.h

#ifndef __A_H
#define __A_H
#include <iostream>
using namespace std;
class A{
//private:
virtual void f()
{
cout<<"A::f"<<endl;
}
virtual void g(){
cout<<"A::g"<<endl;
}
};

#endif

//B.h

#ifndef __B_H
#define __B_H

//#include <iostream>
#include "A.h"

class B:public A{
void d()
{
cout<<"B::d"<<endl;
}
virtual void h()
{
cout<<"B::h"<<endl;
}
};
#endif


//main.cpp

#include "B.h"
typedef void(*Fun)(void);
int main()
{
B b;
Fun pFun;
int i;
for(i=0;i<3;i++)
{
pFun=(Fun)*((int*)*(int*)(&b)+i);
pFun();
}
}

 

 

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved