x=x+1 vs. x +=1

后端 未结 17 1239
独厮守ぢ
独厮守ぢ 2020-12-29 02:57

I\'m under the impression that these two commands result in the same end, namely incrementing X by 1 but that the latter is probably more efficient.

If this is not c

17条回答
  •  Happy的楠姐
    2020-12-29 03:30

    1. Yes, they behave the same.
    2. No, they are probably equally efficient. Optimizers are good at that sort of thing. If you'd like to double check, write the optimized code and view it in reflector.

提交回复
热议问题