这个数字的绝对值。
绝对值如果是非负数,则等于其自身;如果是负数,则等于 -value。
-value
整数溢出可能会导致 -value 的结果保持为负数。
print((2).abs()); // 2 print((-2.5).abs()); // 2.5
double abs();