在 C++ 中何时使用 i++ 或 ++i?
递增运算符用于将一个加一,而递减则相反。递减运算符将值减一。
前置递增 (++i) − 在给变量分配值之前,该值加一。
后续递增 (i++) − 在给变量分配值之后,该值加一。
以下是在 C++ 语言中的 i++ 和 ++i 的语法,
++variable_name; // Pre-increment variable_name++; // Post-increment
在此处,
variable_name − 由用户提供的变量名称。
以下是在 C++ 语言中前置和后置递增的示例,
示例
#include <iostream> using namespace std; int main() { int i = 5; cout << "The pre-incremented value: " << i; while(++i < 10 ) cout<<"\t"<<i; cout << "\nThe post-incremented value: " << i; while(i++ < 15 ) cout<<"\t"<<i; return 0; }
输出
The pre-incremented value: 56789 The post-incremented value: 101112131415
在上面的程序中,前置和后置递增的代码存在于 main() 函数中。整数类型的变量 i 在小于 10 时预先增加,在小于 15 时后置增加。
while(++i < 10 ) printf("%d\t",i); cout << "\nThe post-incremented vaue : " << i; while(i++ < 15 ) printf("%d\t",i);
广告