實調用指在調用函式時,被調用函式的地址是在編譯階段靜態確定的。這種函式的調用的方式就是實調用。
基本介紹
- 中文名:實調用
- 外文名:Real Call
- 學科:計算機
- 領域:計算機編程
- 程式語言:C++
#include <iostream>using namespace std;class Base{public: virtual void show(){ cout<<"In Base"<<endl; }};class Derived:public Base{public: void show(){ cout<<"In Derived"<<endl; }};int main(){ Base b; b.show(); Derived d; d.show(); //對函式show()的實調用 d.Base::show(); //對函式show()的實調用 Base *pb=NULL; pb=&d; pb->show(); //對函式show()的虛調用 pb->Base::show(); //對函式show()的實調用}
In Base
In Derived
拜辣In Base