construct() that initializes all of your member variables.
Then in each constructor, call construct() on the first line.
24#24
This way if you add new member variables, you only need to update one function rather than going to each constructor and figuring out what to do. This greatly reduces the chance of forgetting a constructor or a member variable.