#include <synchro.h>
Public Member Functions | |
thread_copy (const ThrMain &refThr) | |
Behaves exactly like the base class, except for delete and join. | |
void | join (void) |
This object destroys itself, but is allocated by the thread_tree. | |
Protected Member Functions | |
~thread_copy () | |
Only this object can destroy itself. Therefore destructor is protected. | |
Private Member Functions | |
thread_copy () | |
thread_copy (const thread_copy &) | |
thread_copy & | operator= (const thread_copy &) |
http://www.parashift.com/c++-faq-lite/freestore-mgmt.html#faq-16.15
[16.15] Is it legal (and moral) for a member function to say delete this?
1. You must be absolutely 100% positive sure that this object was allocated via new (not by new[], nor by placement new, nor a local object on the stack, nor a global, nor a member of another object; but by plain ordinary new). 2. You must be absolutely 100% positive sure that your member function will be the last member function invoked on this object. 3. You must be absolutely 100% positive sure that the rest of your member function (after the delete this line) doesn't touch any piece of this object (including calling any other member functions or touching any data members). 4. You must be absolutely 100% positive sure that no one even touches the this pointer itself after the delete this line. In other words, you must not examine it, compare it with another pointer, compare it with NULL, print it, cast it, do anything with it.
Naturally the usual caveats apply in cases where your this pointer is a pointer to a base class when you don't have a virtual destructor
rpa::thread_copy< ThrMain >::thread_copy | ( | ) | [private] |
rpa::thread_copy< ThrMain >::thread_copy | ( | const thread_copy< ThrMain > & | ) | [private] |
rpa::thread_copy< ThrMain >::~thread_copy | ( | ) | [inline, protected] |
Only this object can destroy itself. Therefore destructor is protected.
rpa::thread_copy< ThrMain >::thread_copy | ( | const ThrMain & | refThr | ) | [inline, explicit] |
Behaves exactly like the base class, except for delete and join.
void rpa::thread_copy< ThrMain >::join | ( | void | ) | [inline] |
This object destroys itself, but is allocated by the thread_tree.
thread_copy& rpa::thread_copy< ThrMain >::operator= | ( | const thread_copy< ThrMain > & | ) | [private] |