Link to home
Start Free TrialLog in
Avatar of novakv
novakv

asked on

C++ virtual functions

Hi, look at the simple test:

#include <iostream>

class A
{
public:
  A(){
    std::cout << "A::A()\n";
  };
  ~A(){
    std::cout << "A::~A()\n";
    f();
  }

  virtual void f()
  {
    std::cout << "A::f()\n";
  }
};

class B : public A {
public:
  B(){
    std::cout << "B::B()\n";
  }
  virtual void f()
  {
    std::cout << "B::f()\n";
  }

};

void main()
{
  A *a = new A;
  B *b = new B;

  delete a;
  delete b;
}

The output I get is:
A::A()
A::A()
B::B()
A::~A()
A::f()
A::~A()
A::f()

but when f() is defined as virtual, i'm expected this output:
A::A()
A::A()
B::B()
A::~A()
A::f()
A::~A()
B::f()

who knows, where the error is and how to fix it (i need to call B::f())?
Avatar of AlexFM
AlexFM

Make also destructors virtual:

virtual ~A()...

virtual ~B()...
Avatar of novakv

ASKER

But I didn't define ~B(), so ~A() is called instead. And that's what I actually wanted. Why B::f() is not called?
Every class should have it's own destructor, and destructor should be virtual.
Virtual function f() is called according to class type, if you call it using pointer.

A *a = new A;
B *b = new B;

a->f();
b->f();


Every class should have his own destructor to ensure that class clean-up code is executed. Destructor should be virtual to ensure that right destructor is called according to destroyed object type.
Avatar of novakv

ASKER

I think I understand the idea of destructors. but my questions is more about virtual functions:

Why B::f() is not called?

look at this:
~A(){
    std::cout << "A::~A()\n";
    f();
}

that's the same as

~A(){
    std::cout << "A::~A()\n";
    this->f();
}

the function f() is called using pointer and thus it should be found through the table of virtual functions.
ASKER CERTIFIED SOLUTION
Avatar of _ys_
_ys_

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of novakv

ASKER

>  Within the body of a destructor all function calls are local - virtual status is ignored.

I din't know that, do you know why is that so?
> I din't know that, do you know why is that so?
Think about it for a second. Where is the base destructor being called from ... the derived destructor - meaning the derived's destruction process has already started. It doesn't make sense to be able to invoke a method on that object, since it's already in the process of being destroyed.
Avatar of novakv

ASKER

Yes, that makes sense. Thanks.
The problem is that destruction is done reverse to construction and that the destructor of A cannot call virtual functions (because B isn't valid anymore).

So, if B is destructed, first the destructor of B is called (explictly if defined or automatically if not defined) and then the destructor of A. A virtual function call is always ignored here, i. e. you can only call local class members.

Regards, Alex
Avatar of novakv

ASKER

I was looking at the destruction this way:

first the destructors are called in the reverse order. If there is no defined constructor for an inherited class, then the one from the parent is called instead (this is probably wrong).

But the object actually persists in the memmory until the last destructor is called (now i'm not sure about the virtual functions table), so there should not be a problem to call virtual functions.

Well I will do it the "usual" way, but you can correct my ideas if you want to make it clear
> If there is no defined constructor for an inherited class, then the one from the parent is called instead (this is probably wrong).

I think you mean 'destructor' and not 'constructor' but indeed you are wrong. The destructor is called anyway of any class or baseclass, whether it is explicitly defined by you or implicitly by the compiler. Last, only memory get freed.
Virtual destructors mean, that you may delete a baseclass pointer of a derived class instance and both destructors are called:

        B*  pB = new B;
        A* pA  = pB;

        delete pA;   // both destructors are called if ~A() is virtual.

You may look to article 'Using destructors' in Microsoft's knowledge base to learn more.

> But the object actually persists in the memmory until the last destructor is called (now i'm not sure about the virtual functions table), so there should not be a problem to call virtual functions.

The fact that virtual functions can not be called from baseclass destructors is not for simple allocation reasons. The main
point is, that members of your derived class has been already destructed when the baseclass destructor is called. So,
the virtual function would not be able to use any class members because they are all invalid to that time.

Regards, Alex



Just to add , with the aid of source code.

For a constructor Derived ( ) { ... }, the compiler synthesises a call to the base class (if you haven't already provided one):

Derived ( )
: Base ( )
{ ... }

For a destructor ~Dervied ( ) { ... }, again the compiler synthesies a call to the base class

~Derived ( )
{
   ...
   ~Base ( );
}

Notice that the invocation to ~Base ( ) is at the _end_ of the Dervied destructor - all member variables have already been cleaned up.

Hope this helps.