此数字的绝对值。
绝对值是数值本身,如果数值为非负,则为负值则为 -value。
-value
整数溢出可能导致 -value 的结果保持为负。
print((2).abs()); // 2 print((-2.5).abs()); // 2.5
num abs();