Help | Site Map
Connecting Tech Pros Worldwide
 
 
LinkBack Thread Tools
  #1  
Old January 4th, 2007, 11:45 PM
Dennis Jones
Guest
 
Posts: n/a
Default initialization and destruction order for class members

Hello,

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 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.

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? 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 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?

Thanks,

Dennis


  #2  
Old January 5th, 2007, 12:15 AM
Victor Bazarov
Guest
 
Posts: n/a
Default Re: initialization and destruction order for class members

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


  #3  
Old January 5th, 2007, 01:05 AM
Dennis Jones
Guest
 
Posts: n/a
Default Re: initialization and destruction order for class members


"Victor Bazarov" <v.Abazarov@comAcast.netwrote in message
news:enk4rj$3qf$1@news.datemas.de...
Quote:
>
If your 'FSession' is essentially owned by FTable, then it might be
better if the ownership is actually expressed, and not implied.
>
Thanks for your reply, Victor. Looks like I am safe in trusting the order
of initialization and destruction.

No, 'FSession' is not owned by "FTable," in fact, the relationship is
actually the other way around -- a TSession owns zero or more TTables
(though my sample code does not reflect this). TSession is responsible for
destroying any TTables it owns when it is destroyed, but there are times
when a TTable must be destroyed without destroying the TSession that owns
it, in which case, the TSession must help with its destruction, which is why
I provide a custom deleter.

However, your question does help me to identify some issues that I still
need to think through as I design the system.

Thanks,

- Dennis


 

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over network members.
Post your question now . . .
It's fast and it's free

Popular Articles