创客百科

姿势共享,有节操无门槛参与的创客百科,创客动力之源 \ (^_^) /

用户工具

站点工具


en:arduino:language:increment

++ (increment) / -- (decrement)

Description

Increment or decrement a variable

Syntax

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  

Parameters

x: an integer or long (possibly unsigned)

Returns

The original or newly incremented / decremented value of the variable.

Examples

x = 2;
y = ++x;      // x now contains 3, y contains 3
y = x--;      // x contains 2 again, y still contains 3 
See also
+=
-=

Reference Home

本页面的其他翻译:
en/arduino/language/increment.txt · 最后更改: 2016/12/25 22:15 (外部编辑)