abs 抽象方法

int abs()
override

返回这个整数的绝对值。

对于任何整数 value,结果与 value < 0 ? -value : value 相同。

整数溢出可能导致 -value 的结果保持负值。

实现

int abs();