Java:常用的API:Math,System,Object,Objects工具类,BigInteger,BigDecima
一.Math1.Math.abs():获取参数的绝对值有取值范围限制:例如,int的取值为:-2147483648~2147483647jdk15以后,使用Math.absExact(),可以实现抛出异常的操作。System.out.println(Math.abs(-88));//88System.out.println(Math.abs(88));//882.Math.ceil():向上取整相