问题描述
在C中,使用 ++ i 和 i ++ 有什么区别,哪些应该用在$ for 循环的增量块?
++ i 将增加 i 的值,然后返回递增的值。 / p>
i = 1;
j = ++ i;
(i是2,j是2)
i ++ 会增加 i 的值,但返回原始值 i 然后递增。
i = 1;
j = i ++;
(i是2,j是1)
对于 for 循环,可以使用。 ++ i 似乎更常见,也许是因为这是
$ b
作为Freund 笔记,对于C ++对象来说是不同的,因为 operator ++()是一个函数,编译器无法知道如何优化临时对象的创建以保存中间值。
In C, what is the difference between using ++i and i++, and which should be used in the incrementation block of a for loop?
++i will increment the value of i, and then return the incremented value.
i = 1; j = ++i; (i is 2, j is 2)
i++ will increment the value of i, but return the original value that i held before being incremented.
i = 1; j = i++; (i is 2, j is 1)
For a for loop, either works. ++i seems more common, perhaps because that is what is used in K&R.
In any case, follow the guideline "prefer ++i over i++" and you won't go wrong.
There's a couple of comments regarding the efficiency of ++i and i++. In any non-student-project compiler, there will be no performance difference. You can verify this by looking at the generated code, which will be identical.
The efficiency question is interesting... here's my attempt at an answer:Is there a performance difference between i++ and ++i in C?
As On Freund notes, it's different for a C++ object, since operator++() is a function and the compiler can't know to optimize away the creation of a temporary object to hold the intermediate value.
这篇关于++ i和i ++有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!