2
votes
9answers
174 views
Does a destructor always get called for a delete operator, even when it is overloaded?
I'm porting a bit of an old code from C to C++. The old code uses object-like semantics, and at one point separates object destruction from freeing the now-unused memory, with stuf …
1
vote
4answers
127 views
C++ Constructor and Destructor
I'm getting some errors when compiling my program. They relate to the constructor and destructor of my class Instruction.
Errors are:
/tmp/ccSWO7VW.o: In function `Instruction::I …
0
votes
9answers
177 views
How to check if memory has aready been released in Destructor?
I have a simple tank wars style game using the allegro open source library. In my tank class, I initialize arrays of pointers to bitmap objects to 0. Then I create new objects wi …
7
votes
7answers
296 views
Why don’t STL containers have virtual destructors?
Does anyone know why the STL containers don't have virtual destructors?
As far as I can tell, the only benefits are:
it reduces the size of an instance by one pointer (to the …
0
votes
3answers
142 views
How do I destruct data associated with an object after the object no longer exists?
I'm creating a class (say, C) that associates data (say, D) with an object (say, O). When O is destructed, O will notify C that it soon will no longer exist :( ... Later, when C fe …
5
votes
2answers
653 views
In C# what is the difference between a destructor and a Finalize method in a class
A question for the C# guru's out there.
What is the difference, if there is one, between a destructor and a Finalize method in a class?
I recently discovered that visual studio 2 …
3
votes
8answers
309 views
C++ destructors question
With regards to the sample code below, why is the destructor for the base class called twice?
class Base {
public:
Base() {
std::cout << "Base::Base()" << s …
4
votes
5answers
241 views
Throwing Destructors, Memory Corruption?
We have a class whose semantic behaviour is like the following :-
struct Sample
{
~Sample() throw()
{
throw 0;
}
};
void f ()
{
try
{
delete new Sample;
}
…
16
votes
7answers
926 views
RAII vs. exceptions
The more we use RAII in C++, the more we find ourselves with destructors that do non-trivial deallocation. Now, deallocation (finalization, however you want to call it) can fail, i …
13
votes
5answers
1k views
Why destructor is not called on exception?
I expected A::~A() to be called in this program, but it isn't:
#include <iostream>
struct A {
~A() { std::cout << "~A()" << std::endl; }
};
void f() {
A a; …
