 |
C++Talk.NET C++ language newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
kasiyil Guest
|
Posted: Thu Aug 24, 2006 9:10 am Post subject: Destructor & Constructor Question |
|
|
Hello,
I have a question about constructors and destructors in C++. Assume
that I declared a class that has a constructor and virtual destructor
like below:
class X {
X() { printf ("Hi\n"); }
virtual ~X() { }
}
When I derive a class from X called Y, and do not define any
constructor or destructor;
class Y : public X {
void hi() { printf ("Hiiiiiii\n"); }
}
what is the behaivour of the compiler? Does the compiler generates a
constructor that automatically calls X's constuctor? Does the compiler
generates a virtual destructor automatically? Do I need to implement a
virtual destructor? |
|
| Back to top |
|
 |
Rolf Magnus Guest
|
Posted: Thu Aug 24, 2006 9:10 am Post subject: Re: Destructor & Constructor Question |
|
|
kasiyil wrote:
| Quote: | class X {
X() { printf ("Hi\n"); }
virtual ~X() { }
}
class Y : public X {
void hi() { printf ("Hiiiiiii\n"); }
}
what is the behaivour of the compiler? Does the compiler generates a
constructor that automatically calls X's constuctor?
|
Yes.
| Quote: | Does the compiler generates a virtual destructor automatically?
|
Yes.
| Quote: | Do I need to implement a virtual destructor?
|
Depends on what Y does. If you need to do something on its destruction, yes.
Otherwise, the compiler-generated one will be fine. |
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|