Fully constructed objects have their destructor called.
Partially constructed objects do not.
In your case, your Bat object is partially constructed, because you threw an exception from its constructor. So ~Bat() will not be called.
m_member_str however, is fully constructed, and so its destructor will be called.
However, it is impossible for us to see the type of that object.
If it is a std::string* then nothing will happen. It is a pointer, and destroying a pointer does not delete the memory it points to.
If it is some form of smart pointer, then its destructor will be called, and it will safely handle the memory you allocated.
In general, as long as your members are RAII objects and have a meaningful destructor, they will get cleaned up no matter what.
If the are not, as in this case, then you have to deal with the consequences yourself, possibly bny catching the exception, freeing the memory and then rethrowing.
std::string *member as opposed to astd::stringmember? – FredOverflow Dec 28 '11 at 16:36