The object-destruction tag has no wiki summary.
1
vote
2answers
103 views
RVO vs std::unique_ptr<> cleanup
This is a question about C++ specs on object destruction vs Return-Value-Optimization.
Can I expect RVO return the right value before std::unique_ptr<> cleanup?
Foo
Bar()
{
...
1
vote
2answers
86 views
Destructor calls on objects never constructed before
I have the following code.
class Wave {
int m_length;
data_type * m_data;
public:
Wave(){
blah...blah...blah
m_data = NULL;
m_length = 0;
cout << "Wave " ...
5
votes
1answer
168 views
Virtual class creation/destruction in delphi
This is my first post here, but I'd like to say thank you to the community because I've found solutions to my problems countless times by coming here and finding a solution in a question that had ...
2
votes
3answers
128 views
Are static objects deleted when an exception is thrown, or just local objects?
#include <iostream>
#include <exception>
using std::cout;
using std::endl;
class test
{
public:
test()
{
cout<<"constructor called"<<endl;
}
~test()
...
1
vote
5answers
433 views
Question on Smart Pointers In C++
Say we have a base class and a derived. So:
class base {
protected:
~base(){
//...
}
// ...
};
class derived : public base {
// ...
};
And now ...
1
vote
4answers
351 views
C++: Callbacks and system timer events during destructor cascade
Assume an OO design where objects call each other, and after a while the called upon objects callback the initiating objects (calls and callbacks). During normal program termination, while destructors ...
12
votes
6answers
1k views
Good uses of the finalize() method
This is mostly out of curiosity.
I was wandering if anyone has encountered any good usage for Object.finalize() except for debugging/logging/profiling purposes ?
If you haven't encountered any what ...
2
votes
2answers
225 views
Static CComPtr Variable
Is it bad idea to have static CComPtr member variables in an application.
Since we cannt control destruction of static variable and it can happen after CoUninitialze .
12
votes
6answers
540 views
Why do finalizers have a “severe performance penalty”?
Effective Java says :
There is a severe performance penalty for using finalizers.
Why is it slower to destroy an object using the finalizers?