Java:Math类中的常用方法

时间:2021-05-29 19:01:53

方法

含义

static int abs(int)

返回参数的绝对值,返回值类型与参数类型相同

static double abs(double)

返回参数的绝对值

static double ceil(double)

返回大于所给参数的最小的整数值

static double floor(double)

返回不大于所给参数的最大的整数值

static int max(int a,int b)

返回两个int值中较大的一个

static double max(double,double)

返回两个double值中较大的一个

static int min(int a,int b)

返回两个int值中较小的一个

static double min(double,double)

返回两个double值中较小的一个

方法

含义

static double random( )

返回在0.0~1.0之间的随机的double

static int round(double)

返回同所给值最接近的整数,采用45入法

static double sin/cos/tan(double)

返回给定的弧度值对应的三角函数值

static double sqrt(double)

返回所给值的平方根,若所给值为负数则返回NaN