Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
8answers
6k views

Destruction order of static objects in C++

Can I control the order static objects are being destructed? Is there any way to enforce my desired order? For example to specify in some way that I would like a certain object to be destroyed last, ...
5
votes
2answers
94 views

Does the vptr change during destruction?

I was looking at this article, and it says "Upon entry to the base class destructor, the object becomes a base class object, and all parts of C++—virtual functions, dynamic_casts, etc.—treat it that ...
3
votes
6answers
54 views

Is there a guarantee on the order in which the Dispose() method is called when using multiple using statements for the same scope in C#?

using (Stuff1 stf1 = new Stuff1(...)) // Allocation of stf1 using (Stuff2 stf2 = new Stuff2(...)) // Allocation of stf2 { try { // ... do stuff with stf1 and stf2 here ... } ...
3
votes
3answers
76 views

Automatic object destruction

Is the destruction of automatic objects (objects created on the stack) guaranteed to be executed not before they go out of scope? To clarify: #include <iostream> class A { public: A() { ...
3
votes
5answers
215 views

Question about exact time of destruction of temporaries in C++

is the following code safe (it works in DEBUG) : void takesPointer(const Type* v);//this function does read from v, it doesn't alter v in any way Type getValue(); ... ...
2
votes
1answer
123 views

Destruction order of the main thread and the use of pthread_key_create

I was wondering about the use of pthread_key_create while passing in a destructor function. I wanted to have something like this: static ComplexObject foo; void workoncomplex(void *) { ...
2
votes
2answers
155 views

Is there a counterpart to “CreateInstance”?

We have some code that uses MSXML, and does this to create the XML document object: MSXML2::IXMLDOMDocumentPtr doc_in; doc_in.CreateInstance("Msxml2.DOMDocument.6.0"); Once we're finished with ...
2
votes
4answers
267 views

Exception free tree destruction in C++

I have recently managed to get a stack overflow when destroying a tree by deleting its root 'Node', while the Node destructor is similar to this: Node::~Node(){ for(int i=0;i<m_childCount;i++) ...
1
vote
0answers
31 views

Storing pixel based world data

I am making a 2d game with destructable terrain. It will be on iOS but I am looking for ideas or pseudocode, not actual code. I'm wondering how to store a large amount of data. (It will be a large ...
1
vote
1answer
62 views

Spark SkinnableComponent skinDestructionPolicy

As a part of trying to tackle a memory leak in our application, we discovered that for every SkinnableComponent, the skinDestructionPolicy is set to "never" by default. This means that when using ...
1
vote
1answer
135 views

QProcess on the loose

I have created two programs A and B. B is designed to be as a 32-bits QProcess started within a 64-bits A. These programs communicate nicely via stdin, stdout and QSharedMemory. A:A() { QProcess *p ...
1
vote
3answers
167 views

Local variables construction and destruction with optimizer involved

If I have this code: class A { ... }; class B { ... }; void dummy() { A a(...); B b(...); ... } I know that variables a and b will be destroyed in reverse allocation order (b will be ...
0
votes
2answers
311 views

why does the value of session variable remain even after all the code of destruction?

login.aspx if (IsPostBack == false) { //destroy any login information Session["password"] = "false"; Session["login"] = "false"; Session.Abandon(); ...
0
votes
1answer
267 views

how python manage object delete or destruction

guys, I am rather new to python and learning it to build a gui application (with wypython). I have a question related with object destruction in python. e.g. in myFrame I have onNew (create a new ...
0
votes
2answers
113 views

C++ basic pointer question

I have some shared pointer shared_ptr<T> pointer1(new T(1));. Now, in some other part of code I have an explicit copy of pointer2 (guess it would be stored in a std::map or some other ...