Tagged Questions

a method in object-oriented programming which is invoked when an object is destroyed

learn more… | top users | synonyms (1)

42
votes
4answers
1k views

Can a destructor be recursive?

Is this program well-defined, and if not, why exactly? #include <iostream> #include <new> struct X { int cnt; X (int i) : cnt(i) {} ~X() { std::cout << ...
41
votes
8answers
9k views

What is the use of having destructor as private?

What is the use of having destructor as private?
40
votes
12answers
9k views

throwing exceptions out of a destructor

Most people say never throw an exception out of a destructor - doing so results in undefined behavior. Stroustrup makes the point that "the vector destructor explicitly invokes the destructor for ...
38
votes
2answers
483 views

GNU GCC (g++): Why does it generate multiple dtors?

Developing environment: GNU GCC (g++) 4.1.2 While I'm trying to investigate how to increase 'code coverage - particularly function coverage' in unit testing, I've found that some of class dtor seems ...
37
votes
14answers
56k views

Is there a destructor for Java?

Is there a destructor for Java? I don't seem to be able to find any documentation on this. If there isn't, how can I achieve the same effect? Thank you in advance. EDIT: First of all I thank ...
33
votes
6answers
10k views

Why should I declare a virtual destructor for an abstract class in C++?

I know it is a good practice to declare virtual destructors for base classes in C++, but is it always important to declare virtual destructors even for abstract classes that function as interfaces? ...
31
votes
8answers
3k views

Why is there no RAII in .NET?

Being primarily a C++ developer the absence of RAII (Resource Acquisition Is Initialization) in Java and .NET has always bothered me. The fact that the onus of cleaning up is moved from the class ...
28
votes
5answers
7k views

When to use virtual destructors?

I have a solid understanding of most OO theory but the one thing that confuses me a lot is virtual destructors. I thought that the destructor always gets called no matter what and for every object in ...
28
votes
9answers
7k views

What is the difference between using IDisposable vs a destructor in C#?

When would I implement IDispose on a class as opposed to a destructor? I read this article, but I'm still missing the point. My assumption is that if I implement IDispose on an object, I can ...
27
votes
7answers
4k views

C++: Will an 'empty' destructor do the same thing as the generated destructor?

Suppose we have a (toy) C++ class such as the following: class Foo { public: Foo(); private: int t; }; Since no destructor is defined, a C++ compiler should create one ...
25
votes
10answers
5k views

Is the destructor called if the constructor throws an exception?

Looking for an answer for C# and C++. (in C#, replace 'destructor' with 'finalizer')
23
votes
7answers
2k 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, in which case ...
20
votes
1answer
575 views

Object destruction in C++

When exactly are objects destroyed in C++, and what does that mean? Do I have to destroy them manually, since there is no Garbage Collector? How do exceptions come into play? (Note: This is meant to ...
20
votes
3answers
765 views

shared_ptr magic :)

Mr. Lidström and me had an argument :) Mr. Lidström's claim is that a construct shared_ptr<Base> p(new Derived); doesn't require Base to have a virtual destructor. @Daniel: Really? Will the ...
20
votes
5answers
15k views

Why do we need a pure virtual destructor in C++?

I understand the need for a virtual destructor. But why do we need a pure virtual destructor? In one of the C++ articles, the author has mentioned that we use pure virtual destructor when we want to ...
19
votes
7answers
686 views

How does the C++ runtime system know when objects go out of scope

I was wondering how the C++ runtime system detects when an object goes out of scope so that it calls the destructor accordingly to free up the occupied memory. Thanks.
19
votes
6answers
1k views

When should your destructor be virtual?

When should your C++ object's destructor be virtual?
18
votes
4answers
1k views

The difference between a destructor and a finalizer?

Please Note: This question is about the difference in terminology between the words "destructor" and "finalizer" and their correct usage. I have merely provided examples of their use in C# and C++/CLI ...
18
votes
5answers
3k 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; throw "spam"; } ...
17
votes
10answers
17k views

Does delete call the destructor in C++?

I have an class (A) which uses a heap memory allocation for one of it's fields. Class A is instantiated and stored as a pointer field in another class (B). When I'm done with object B, I call ...
17
votes
1answer
1k views

Destructors of builtin types (int, char etc..)

In C++ the following code gives a compiler error: void destruct1 (int * item) { item->~int(); } This code is nearly the same, I just typedef the int to another type and something magic ...
16
votes
2answers
228 views

Why is taking the address of a destructor forbidden?

C++ standard at 12.4.2 states that [...] The address of a destructor shall not be taken. [...] However, one can without any complaints by the compiler take the address of a wrapper around a ...
15
votes
5answers
254 views

Are there any specific reasons to use non-virtual destructors?

As I know, any class that is designated to have subclasses should be declared with virtual destructor, so class instances can be destroyed properly when accessing them through pointers. But why it's ...
15
votes
3answers
182 views

Order of destruction of elements of an std::vector [closed]

Possible Duplicate: STL containers element destruction order Is there a guarantee the the elements of an std::vector would be destroyed from last to first?
14
votes
10answers
708 views

(Ab)using constructors and destructors for side effects bad practice? Alternatives?

In OpenGL, one often writes code like this: glPushMatrix(); // modify the current matrix and use it glPopMatrix(); Essentially, the state is changed, then some actions are performed that use the ...
14
votes
7answers
2k views

delete a NULL pointer does not call overloaded delete when destructor is written

class Widget { public: Widget() { cout<<"~Widget()"<<endl; } ~Widget() { cout<<"~Widget()"<<endl; } void* ...
14
votes
4answers
2k views

Static Finalizer

What is the right way to perform some static finallization? There is no static destructor. The AppDomain.DomainUnload event is not raised in the default domain. The AppDomain.ProcessExit event ...
13
votes
3answers
221 views

What's this extra parameter passed into virtual destructor?

I have this code: class Class { public: virtual ~Class() {} }; int main() { Class* object = new Class(); delete object; } which I compile with Visual C++ 10 and get this disassembly ...
13
votes
3answers
203 views

Object doesn't get garbage collected

I think this is a C# beginner question, but I can't seem to find a correct solution. I have a ClassOne object, which defines an event. I create a ClassTwo object, which is considered as a black box, ...
13
votes
7answers
636 views

Do you need to remove an event handler in the destructor?

I use some UserControls which get created and destroyed within my application during runtime (by creating and closing subwindows with these controls inside). It's a WPF UserControl and inherits from ...
13
votes
3answers
377 views

What happens to base class destructor if a derived class destructor throws an exception

It just happened to me I wondered how resources are freed in the following case. class Base { Resource *r; public: Base() { /* ... */ } ~Base() { delete r; } }; class Derived : public ...
13
votes
3answers
404 views

Destructor not called after destroying object placement-new'ed

I had no clue why this doesn't work. The following Function is created by placement new. A function is provided that checks whether it should be destructed, and if so, calls its destructor manually. ...
13
votes
4answers
511 views

Force virtual destructors? C++

I didnt see it in the C++ Faq lite How do i define a base class so every class inheriting it is required to define a destructor? I tried running this program struct VDtor { virtual ~VDtor()=0; }; ...
13
votes
6answers
13k views

Dynamically allocating an array of objects

This is kind of a beginners question, but I haven't done C++ in a long time, so here goes... I have a class that contains a dynamically allocated array, say class A { int* myArray; A() { ...
12
votes
4answers
452 views

What is the purpose of pure virtual destructor? [closed]

Possible Duplicates: Under what circumstances is it advantageous to give an implementation of a pure virtual function? Why do we need a pure virtual destructor in C++? Compiler doesn't ...
12
votes
7answers
678 views

Under what circumstances are C++ destructors not going to be called?

I know that my destructors are called on normal unwind of stack and when exceptions are thrown, but not when exit() is called. Are there any other cases where my destructors are not going to get ...
12
votes
5answers
254 views

destruction of a variable or array in C#

I have a variable or array, which I no longer needed. How to destroy them? Sorry for noob-question.
12
votes
4answers
676 views

C++: Life span of temporary arguments?

When creating a new instance of a MyClass as an argument to a function like so: class MyClass { MyClass(int a); }; myFunction(MyClass(42)); does the standard make any grantees on the timing ...
12
votes
7answers
1k 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 virtual method ...
12
votes
4answers
5k views

How do I correctly clean up a Python object?

class Package: def __init__(self): self.files = [] # ... def __del__(self): for file in self.files: os.unlink(file) __del__(self) above fails with an ...
11
votes
4answers
275 views

Why structs cannot have destructors?

What is best answer on interview on such question you think? I think I didn't find a copy of this here, if there is one please link it.
11
votes
2answers
436 views

Two questions about Dispose() and destructors in C#

I have a question about how to use Dispose() and destructors. Reading some articles and the MSDN documentation, this seems to be the recommended way of implementing Dispose() and destructors. But I ...
11
votes
12answers
3k views

Why doesn't the C++ default destructor destroy my objects?

The C++ specification says the default destructor deletes all non-static members. Nevertheless, I can't manage to achieve that. I have this: class N { public: ~N() { std::cout << ...
11
votes
5answers
3k views

Do I need to explicitly call the base virtual destructor?

When overriding a class in C++ (with a virtual destructor) I am implementing the destructor again as virtual on the inheriting class, but do I need to call the base destructor? If so I imagine it's ...
10
votes
8answers
515 views

When should I create a destructor?

For example: public class Person { public Person() { } ~Person() { } } When should I manually create a destructor? When have you needed to create a destructor?
10
votes
9answers
833 views

How will _exit behave in a C++ program?

C99 offers the _Exit function, which exits "immediately", although it does may close file descriptors. Unix/POSIX extends this behavior by mandating the closing of all fd's without flushing (and ...
10
votes
4answers
1k views

Can I destruct a structure in C++?

Is there a way to destruct a structure (not a class)?
10
votes
6answers
410 views

Why, really, deleting an incomplete type is undefined behaviour?

consider this classic example used to explain what not to do with forward declarations: //in Handle.h file class Body; class Handle { public: Handle(); ~Handle() {delete impl_;} ...
10
votes
6answers
529 views

Destructors in C++

Does the destructor deallocate memory assigned to the object which it belongs to or is it just called so that it can perform some last minute housekeeping before the object is deallocated by the ...
10
votes
5answers
2k views

Can the default destructor be generated as a virtual destructor automatically?

Can the default destructor be generated as a virtual destructor automatically? If I define a base class but no default destructor, is there a default virtual destructor generated automatically?

1 2 3 4 5 12