C++ how to call method in derived class from base class

倖福魔咒の 提交于 2019-12-03 13:26:18

You can use a template method:

class Base
{
 public:
  void Execute()
  {
    BaseDone(42);
    DoDone(42);
  }
 private:
  void BaseDone(int code){};
  virtual void DoDone(int) = 0;
};

class Derived : Base
{
 public:
  void Run() { Execute(); }
 private:
  void DoDone(int code) { .... }
};

Here, Base controls how its own and derived methods are used in Execute(), and the derived types only have to implement one component of that implementation via a private virtual method DoDone().

The base class method can call the derived method quite simply:

void Base::Execute()
{
    Done(42);
}

To have the base class Done() called before the derived class, you can either call it as the first statement in the derived class method, or use the non-virtual idiom.

Here's an example of calling it at the top of the derived class method. This relies on the derived class to get it right.

void Derived::Done(int code)
{
    Base::Done(code);
}

Here's an example of using the non-virtual idiom:

class Base
{
    void Done(int code){
        // Do whatever
        DoneImpl(); // Do derived work.
    }
    virtual void DoneImpl() { };
    ...
 };

 class Derived {
     virtual void DoneImpl() { 
         // Do derived class work.
     };
     ...
 };
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!