Блог пользователя HappyLittlePony

Автор HappyLittlePony, история, 8 лет назад, По-английски

I wonder why so many high-rated users do not use short FOR-loop in c++. I think that there are many benefits like better readability of code and it also saves time. So, why don't users like tourist use it?

  • Проголосовать: нравится
  • -23
  • Проголосовать: не нравится

»
8 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I personally would disagree that it gives better readability.
Also, C macros were not designed for such purposes.

The reason is simply writability (fewer keystrokes).

»
8 лет назад, # |
  Проголосовать: нравится +3 Проголосовать: не нравится

One of the main problems of C/C++ contest macros is that everyone has their own set of macros, so writes in their own unique language. You may be fine with that as a lone contestant who never reads other contestants' code (no team contests, no hacking attempts, no problemsetting, etc.). But as you reach out to these and other areas, you find yourself reading other programmers' code quite often, and learning a new set of macros every time is just not worth it.

Another problem is applicability of macros: different versions have different domains, and with a particularly unsafe tool such as macros, stepping outside the domain usually results in a silent error. Considering the time one has to spend to debug a C preprocessor macro, the usability gain of macros is questionable.