Is there a way to check destruction order constraints of the form "A is destructed before B" at compile time?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
I don't think that's possible. Take for instance the following code:
How would you know at compile time which destructor is called first? |
|||
|
|
|
You can check that easily by adding commands to the destuctor. See(for example here for more detailed description): http://msdn.microsoft.com/en-us/library/8183zf3x(v=vs.80).aspx Kind regards, Bo |
|||
|
|
|
It is fixed for auto variables and can not be fixed for dynamic allocated objects. Also, if your question is for member objects of the class, then yes it is fixed. The members which are listed first in the class declaration, they are destroyed first. |
|||
|
|