返回这个整数的绝对值。
对于任何整数 value,结果与 value < 0 ? -value : value 相同。
value
value < 0 ? -value : value
整数溢出可能导致 -value 的结果保持负值。
-value
int abs();