++ / --

来自YFRobotwiki
2017年9月10日 (日) 17:29Allblue讨论 | 贡献的版本

(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳转至: 导航搜索


描述

递增或递减某个变量


语法

x++;  // increment x by one and returns the old value of x
++x;  // increment x by one and returns the new value of x

x-- ;   // decrement x by one and returns the old value of x 
--x ;   // decrement x by one and returns the new value of x 


参数

x: 整型或者长整型变量(包含无符号整型)


返回值

变量执行完递增或递减后的旧值和新值


示例

x = 2;
y = ++x;      // x = 3, y = 3
y = x--;      // x = 2, y = 3 


扩展阅读

- +=
- -=




返回Arduino语法参考列表

更多建议和问题欢迎反馈至 YFRobot论坛