C++ 虚函数及其工作机制

Consider the following simple program as an example of runtime polymorphism. The main thing to note about the program is that the derived class’s function is called using a base class pointer.

The idea is that virtual functions are called according to the type of the object instance pointed to or referenced, not according to the type of the pointer or reference.

In other words, virtual functions are resolved late, at runtime.

 

#include <iostream>

using namespace std;

  

class Base {

public:

    virtual void show()

    {

        cout << " In Base \n";

    }

};

  

class Derived : public Base {

public:

    void show()

    {

        cout << "In Derived \n";

    }

};

  

int main(void)

{

    Base* bp = new Derived;

  

    // RUN-TIME POLYMORPHISM

    bp->show();

  

    return 0;

}

Output:

In Derived


 

What is the use?
Virtual functions allow us to create a list of base class pointers and call methods of any of the derived classes without even knowing kind of derived class object.

For example: Consider an employee management software for an organization.

Let the code has a simple base class Employee , the class contains virtual functions like raiseSalary(), transfer(), promote(), etc. Different types of employees like Manager, Engineer, etc. may have their own implementations of the virtual functions present in base class Employee.

In our complete software, we just need to pass a list of employees everywhere and call appropriate functions without even knowing the type of employee. For example, we can easily raise the salary of all employees by iterating through the list of employees. Every type of employee may have its own logic in its class, but we don’t need to worry about them because if raiseSalary() is present for a specific employee type, only that function would be called.

 

class Employee {

public:

    virtual void raiseSalary()

    {

        /* common raise salary code */

    }

  

    virtual void promote()

    {

        /* common promote code */

    }

};

  

class Manager : public Employee {

    virtual void raiseSalary()

    {

        /* Manager specific raise salary code, may contain

          increment of manager specific incentives*/

    }

  

    virtual void promote()

    {

        /* Manager specific promote */

    }

};

  

// Similarly, there may be other types of employees

  

// We need a very simple function

// to increment the salary of all employees

// Note that emp[] is an array of pointers

// and actual pointed objects can

// be any type of employees.

// This function should ideally

// be in a class like Organization,

// we have made it global to keep things simple

void globalRaiseSalary(Employee* emp[], int n)

{

    for (int i = 0; i < n; i++)

  

        // Polymorphic Call: Calls raiseSalary()

        // according to the actual object, not

        // according to the type of pointer

        emp[i]->raiseSalary();

}

Like globalRaiseSalary(), there can be many other operations that can be performed on a list of employees without even knowing the type of the object instance.
Virtual functions are so useful that later languages like Java keep all methods as virtual by default.

How does the compiler perform runtime resolution?

The compiler maintains two things to serve this purpose:

  1. vtable: A table of function pointers, maintained per class.
  2. vptr: A pointer to vtable, maintained per object instance (see this for an example).

Compiler adds additional code at two places to maintain and use vptr.

1) Code in every constructor. This code sets the vptr of the object being created. This code sets vptr to point to the vtable of the class.
2) Code with polymorphic function call (e.g. bp->show() in above code). Wherever a polymorphic call is made, the compiler inserts code to first look for vptr using base class pointer or reference (In the above example, since pointed or referred object is of derived type, vptr of derived class is accessed). Once vptr is fetched, vtable of derived class can be accessed. Using vtable, address of derived derived class function show() is accessed and called.

Is this a standard way for implementation of run-time polymorphism in C++?
The C++ standards do not mandate exactly how runtime polymorphism must be implemented, but compilers generally use minor variations on the same basic model.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值