Dennis Jones wrote:
Quote:
I have a class that will eventually look something like this:
>
class TTableHolder
{
private:
boost::scoped_ptr<TSessionFSession;
boost::shared_ptr<TTableFTable;
>
public:
TTableHolder(TServer &AServer)
: FSession( new TSession( &AServer ) ),
FTable( new TTable, TableReleaser( FSession.get() ) ) {}
};
>
I am pretty sure that the order of initialization for members in an
initializer list is based on the order of their declaration in the
class.
That's correct.
Quote:
That is, since FSession is declared before FTable, I can write
the initializers in any order I want, and FSession will always be
initialized before FTable, thus guaranteeing (I think) that FTable
will get a valid FSession object when it is initialized.
Right.
Quote:
I have two questions:
>
1) Is my understanding of the order of member initialization correct?
Or is it compiler-dependent?
>
2) Assuming initialization order is specified by the language, and is
based on member declaration order, what is the order of their
destruction?
Reverse to their construction.
Quote:
Are they destructed in reverse order? Obviously, I
want FTable (which is a shared_ptr) to be destroyed before FSession,
as FSession is used by FTable's custom deleter.
Should be alright.
Quote:
Should I prefer to make FSession a shared_ptr instead? If I do that,
will the existence of FTable's custom deleter guarantee that the
reference count of FSession is not decremented to zero, thereby
ensuring that FSession will be valid at the time of FTable's
destruction?
Is there a better way to write this that will guarantee the desired
construction/destruction order of class members?
If your 'FSession' is essentially owned by FTable, then it might be
better if the ownership is actually expressed, and not implied.
V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask