Use const identifiers by default. They provide guarantees for the readerreader/maintainer, and are way easier to build in than to insert afterwards.
Both member variables and methods would be declared const, as well as function arguments. const member variables enforce proper use of the initializer list.
A side-effect of this rule: avoid methods with side-effects.
