1、特点2、常用方法 1、特点实现数学运算的工具类 2、常用方法(1)int abs(int a) : 返回绝对值<br /> (2)double ceil(double a) : 向上取整(天花板)<br /> (3)double floor(double a) : 向下取整(地板)<br /> (4)int round(float a) :四舍五入<br /> (5)double pow(double a,double b) : 计算a的b次方法