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