тут копался в CodingStyle для Qt Creator, наткнулся на интересное требование к коду.
Prefer preincrement to postincrement whenever possible.
Preincrement has potential of being faster than postincrement. Just think about the obvious implementations of pre/post-increment. This rule applies to decrement too.
++T;
--U;
T++; // not used in Qt Creator
U--; // not used in Qt Creator
а что правда преинкремент быстрее, чем постинкремент? я думал разницы нет