Új hozzászólás Aktív témák

  • jattila48

    aktív tag

    válasz LordX #2972 üzenetére

    Ha már a Google-nál dolgozol, nyilván ismered:

    Google C++ Style Guide

    Preincrement and Predecrement

    Use prefix form (++i) of the increment and decrement operators with iterators and other template objects.

    When a variable is incremented (++i or i++) or decremented (--i or i--) and the value of the expression is not used, one must decide whether to preincrement (decrement) or postincrement (decrement).

    When the return value is ignored, the "pre" form (++i) is never less efficient than the "post" form (i++), and is often more efficient. This is because post-increment (or decrement) requires a copy of i to be made, which is the value of the expression. If i is an iterator or other non-scalar type, copying i could be expensive. Since the two types of increment behave the same when the value is ignored, why not just always pre-increment?

    The tradition developed, in C, of using post-increment when the expression value is not used, especially in for loops. Some find post-increment easier to read, since the "subject" (i) precedes the "verb" (++), just like in English.

    For simple scalar (non-object) values there is no reason to prefer one form and we allow either. For iterators and other template types, use pre-increment.

    Úgy látszik, hogy a céged mégiscsak elvárja, hogy foglalkozz ezzel.

Új hozzászólás Aktív témák

Hirdetés