13.7 — Non-static member initialization
When writing a class that has multiple constructors (which is most of them), having to specify default values for all members in each constructor results in redundant code. If you update the default value for a member, you need to touch each constructor. It’s possible to give normal class member …