常用类——Math类
程序员文章站
2022-06-26 11:56:44
...
Math类
概述
- Math类包含了执行基本数字运算的方法
类中方法的调用方法
- Math类中并没有构造方法,但是内部的方法都是静态的,可以直接通过类名.方法进行调用
常用方法
方法名 | 说明 |
---|---|
public static int abs(int a ) | 返回参数的绝对值 |
public static double ceil(double a) | 返回大于或等于参数的最小double值,等于一个整数 |
public static double floor(double a) | 返回小于或等于参数的最大double值,等于一个整数 |
public static int round(float a) | 按照四舍五入返回最接近参数的int |
public static int max(int a,int b) | 返回两个int值中的较大值 |
public static int min(int a,int b) | 返回两个int值中的较小值 |
public static double pow (double a,double | 返回a的b次幂的值 |
public static double random() | 返回值为double的正值,[0.0,1.0) |
代码示例
1. abs
public class AbsDemo {
public static void main(String[] args) {
//返回参数的绝对值
System.out.println(Math.abs(88)); //88
System.out.println(Math.abs(-88)); //88
}
}
2. ceil
public class CeilDemo {
public static void main(String[] args) {
//返回大于或等于参数的最小double值,等于一个整数
System.out.println(Math.ceil(12.34)); //13.0
System.out.println(Math.ceil(12.56)); //13.0
}
}
3. floor
public class FloorDemo {
public static void main(String[] args) {
//返回小于或等于参数的最大double值,等于一个整数
System.out.println(Math.floor(12.34)); //12.0
System.out.println(Math.floor(12.56)); //12.0
}
}
4. round
public class RoundDemo {
public static void main(String[] args) {
//按四舍五入返回最接近参数的int
System.out.println(Math.round(12.34F)); //12
System.out.println(Math.round(12.56F)); //13
}
}
5. max
public class MaxDemo {
public static void main(String[] args) {
// 返回两个int值中的较大值
System.out.println(Math.max(66,88)); //88
}
}
6. min
public class MinDemo {
// 返回两个int值中的较小值
public static void main(String[] args) {
System.out.println(Math.min(66,88)); //66
}
}
7. pow
public class PowDemo {
//返回a的b次幂的值
public static void main(String[] args) {
System.out.println(Math.pow(2.0,3.0)); //8.0
}
}
8. random
public class RandomDemo {
//产生一个随机数,返回值为double的正值 [0.0,1.0)
public static void main(String[] args) {
System.out.println(Math.random());
}
}