Reference Language | Libraries | Comparison | Changes
计算出一个数的绝对值.
x: 需要求绝对值的数
x: 如果 x 大于或等于0.
-x: 如果 x 小于0.
由于abs()函数的实现,不要在括号中加入其他的运算符和函数,有可能会造成一些错误的结果,如下面的例子:
abs(a++); // 不要这样写 a++; // 要这样写 abs(a);
Corrections, suggestions, and new documentation should be posted to the Forum.
The text of the Arduino reference is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.