- When possible use
iforswitchinstead of calls through function pointers. Clarification:void doit(int m) { switch(m) { case 1: f1(); break; case 2: f2(); break; } }instead ofvoid doit(void(*m)()) { m(); }can inline the calls. - When possible and not harm causing, prefer CRTP to virtual functions
- When possible, avoid C Strings and use a String class. It will be faster most often. (constant time length "measure", appending amortized constant time, ...)
- Always pass user defined typed values (apart from where it doesn't make sense. e.g iterators) by reference to const (T const&) instead of copying value.
- For user defined types, always prefer
++tinstead oft++ - Use
constearly, often. Most important to improve readability. - Try keeping
newto a minimum. Always prefer automatic variables (on the stack) if possible - Instead of filling arrays yourself, prefer initialization with an empty initializer list like
T t[N] = { };if you want zeros. - Use the constructor initializer list as often as possible, especially when initializing user defined typed members.
- Make use of functors (types with
operator()overloaded). They inline better than calls through function pointers. - Don't use classes like
std::vectororstd::stringif you have a fixed sized quantity not growing. Useboost::array<T, Size>or a naked array and use it properly.
And indeed, i almost forgot it:
Premature optimization is the root of all evil
