How do you use #define?

前端 未结 8 851
鱼传尺愫
鱼传尺愫 2020-12-11 15:03

I\'m wondering about instances when it makes sent to use #define and #if statements. I\'ve known about it for a while, but never incorporated it into my way of coding. How e

8条回答
  •  天涯浪人
    2020-12-11 15:19

    I often find myself defining some things that are done repetitively in certain functions. That makes the code much shorter and thus allows a better overview.

    But as always, try to find a good measure to not create a new language out of it. Might be a little hard to read for the occasional maintenance later on.

提交回复
热议问题