Talk About Network

Google


Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Programming > C++ Leda > composition/agg...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 1 of 1 Topic 125 of 212
Post > Topic >>

composition/aggregation: would like to use constructor body rather than initializer list

by ckoudell@[EMAIL PROTECTED] (Chris K) Apr 17, 2004 at 01:30 PM

I am relatively new to C++ and hope that this question is relevant. I
have spent some time at the local library and some time on dejanews, 
but have no decided to go ahead with my question, since I found no 
satisfactory answer yet. 

It is about composed/aggregated classes. I am developing a scientific
code (Monte Carlo) in which I find it natural to have classes with several

levels of aggregation.

I am particularly keen on having members in my classes declared as
pointers to classes. For the large memory requirements I have, this 
makes sense, since the actual information about class sizes presumably 
comes from some input class/file. 

I code this such that the top-class constructor recursively calls the
constructors of its member classes in the initializer list and this seems 
very awkward to me. 

To take a concrete example directly from the web:

// User.h
class PointerMember;
class RefParam;

class User{
   public:
      User( const RefParam &inParam );
      virtual ~User()
                
   private:
      PointerMember *mPointerMember;
};

// User.cpp
#include "User.h"
User::User( const RefParam &inParam )
   : mPointerMember( new PointerMember( inParam ) )
{
        return;
}

User::~User()
{
   delete mPointerMember;
   return;
}

 
I would much rather do the following: 

User::User( const RefParam &inParam )
{
   mPointerMember = new PointerMember( inParam );               // DON'T
DO THIS
   return;
}

i.e. I would love to use the constructor body, rather than the
initialization list.

To me this seems natural, as I might like to perform some branching in
the constructor or get some non-trivial input info, before building member
mPointerMember - operations that just don't fit the initializer list. 

Now, someone in another thread pointed out that another way to proceed
in order to salvage the initializer list, would be to build a
mPointerMember 
outside (before calling) the constructor  User(....) and pass it as a
reference to User(.....), which then passes it on to a copy constructor
of the member mPointerMember. However, isn't this rather an awkward
thing to do? Why should I even think of defining member contents/size 
outside of their belonging class.

To make a long story short. May I actually legally use the constructor
body as not suggested in the above (DON'T DO THIS)?

If not, then where is my reasoning/design wrong? 

Thanks for your help, 

Chris
 




 1 Posts in Topic:
composition/aggregation: would like to use constructor body rath
ckoudell@[EMAIL PROTECTED  2004-04-17 13:30:41 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan12V112 Tue Jul 8 22:59:00 CDT 2008.