Difference between revisions of "Constructors and Destructors in C++"

From Wiki**3

(Virtual Destructors)
(Virtual Destructors)
Line 50: Line 50:
 
}
 
}
 
</cpp>
 
</cpp>
 +
 +
"Virtual" does not mean a destructor is any less real. It only means that the correct one to call will be determined at run time (i.e., depending on the object being destroyed).

Revision as of 20:14, 28 February 2008

Constructors

Destructors

Virtual Destructors

Virtual destructors are needed when class hierarchies are used and when polymorphism is used in the program.

The problem is how to select the correct destructor when an object referenced by a pointer not of its own class is deleted. <cpp> // FIRST SCENARIO class Base { public:

 ~Base() {}
 virtual void f() {}

};

class Derived : public Base { public:

 ~Derived() {}
 void f() {}

};

void main() {

 Base *b = new Derived();
 a->f();     // ok:       calls Derived::f()
 delete b;   // problems: calls Base::~Base()

} </cpp>

Defining the destructor virtual in Base solves the problem and allows the correct destructor to be selected in the previous example. <cpp> // SECOND SCENARIO class Base { public:

 virtual ~Base() {}   // virtual destructor
 virtual void f() {}

};

class Derived : public Base { public:

 ~Derived() {}
 void f() {}

};

void main() {

 Base *b = new Derived();
 a->f();     // ok: calls Derived::f()
 delete b;   // ok: calls Derived::~Derived()

} </cpp>

"Virtual" does not mean a destructor is any less real. It only means that the correct one to call will be determined at run time (i.e., depending on the object being destroyed).