I have as part of assignment to look into a development kit that uses the "two-phase" construction for C++ classes:
// Include Header
class someFubar{
public:
someFubar();
bool Construction(void);
~someFubar();
private:
fooObject _fooObj;
}
In the source
// someFubar.cpp
someFubar::someFubar : _fooObj(null){ }
bool
someFubar::Construction(void){
bool rv = false;
this->_fooObj = new fooObject();
if (this->_fooObj != null) rv = true;
return rv;
}
someFubar::~someFubar(){
if (this->_fooObj != null) delete this->_fooObj;
}
Why would this "two-phase" be used and what benefits are there? Why not just instantiate the object initialization within the actual constructor?
thisto access members, compare pointers withnull, test fornullbefore deleting, and use(void)to indicate no parameters came from the same lunatic. – Mike Seymour Jun 11 '10 at 10:09thisto access member functions. I do it all the time as I find it more readable (and sometimes of course the use ofthisis necessary). I agree with the rest of your rant (what isnullanyway?). – avakar Jun 11 '10 at 10:46thiswhere necessary, or where it enhances readability, or just using it everywhere for consistency, is fine. Prefixing members with warts so you never need to usethisis also fine, although not to my taste. Doing both is lunacy. – Mike Seymour Jun 11 '10 at 10:59