1
vote
5answers
60 views
Server crash due to ASP.NET-Page (C#)
My local test server crashes as soon as I'm trying to write to a logfile. I'm using this for an ASP.NET-Page, codebehind is C#.
Structure:
/
Functions.cs
index.aspx
index.aspx …
2
votes
4answers
564 views
Virtual Default Destructors in C++
Hello all :)
I've got a large set of inherited classes (criteria) which inherit from a base class (criterion). Here's criterion's code
class criterion
{
public:
virtual unsig …
0
votes
4answers
101 views
Expected contructor, destructor, or type conversion before ‘<’ token
From what I can gather from Google, I must have syntax/parsing error but I can't seem to locate it..
This is my header file:
#include <fstream>
#include <iostream>
# …
2
votes
6answers
82 views
Explicitly calling a destructor in a signal handler
I have a destructor that performs some necessary cleanup (it kills processes). It needs to run even when SIGINT is sent to the program. My code currently looks like:
typedef boo …
1
vote
4answers
1k views
Excel VBA object constructor and destructor
I need to make some custom objects in VBA that will need to reference each other and I have a some issues.
First - how do object constructors work in VBA? Are there constructors?
…
0
votes
6answers
119 views
Destructor of a concrete class
Guideline #4 link text, states:
A base class destructor should be
either public and virtual, or
protected and nonvirtual.
Probably I'm missing something, but what if I ju …
2
votes
6answers
176 views
What is the mechanism through which destructors are called for stack-assigned objects?
How does C++ ensure that destructors are called for stack assigned objects? What happens to the destructor function (or a pointer to it) when I assign dynamic memory as follows:
c …
2
votes
5answers
205 views
C++ stack allocated object, explicit destructor call
Hi,
I came across a strange use of the destructor while working on an existing library. The destructor of a stack allocated stl vector was being called explicitly, when its the ca …
0
votes
1answer
55 views
VB6 Collection Remove Doesn’t Fire Class_Terminate
I apologize in advance; this is a long question. I've tried to simplify as much as I can but it's still a bit more long-winded than I'd care to see.
In some legacy code, we've go …
1
vote
4answers
136 views
Questions about C++ memory allocation and delete
I'm getting a bad error. When I call delete on an object at the top of an object hierarchy (hoping to the cause the deletion of its child objects), my progam quits and I get this:
…
4
votes
5answers
809 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 destruct …
5
votes
5answers
323 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.Pro …
1
vote
4answers
177 views
C++ GCC 4.3.2 error on vector of char-array
Hello,
It is similar in problem to this bug
http://stackoverflow.com/questions/1468058/question-about-storing-array-in-a-stdvector-in-c
but for a different reason (see below).
…
1
vote
7answers
156 views
Unusual destructor behaviour when copying over stack variables
I wrote a test to check whether destructors were called before an overwriting assignment on a stack variable, and I can't find any rational explanation for the results...
This is …
22
votes
8answers
2k 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 …
