Решил я таки подучить C++, а то по роду занятий жабкой стал подзабывать. Да что там подзабывать - подзабыл конкретно.
Читаю сижу code style guide по плюсам и вижу там следующее:
11. Private class variables should have underscore suffix.
A side effect of the underscore naming convention is that it nicely resolves the problem of finding reasonable variable names for setter methods and constructors:
void setDepth (int depth) { depth_ = depth; }
У меня возник только один вопрос - а что, this уже не рулит?