Math
- 代表数学,是一个工具类,里面提供的都是对数据进行操作的一些静态方法。
Math类提供的常见方法
方法名 | 说明 |
---|---|
public static int abs(int a) | 获取参数绝对值 |
public static double ceil(double a) | 向上取整 |
public static double floor(double a) | 向下取整 |
public static int round(float a) | 四舍五入 |
public static max(int a,int b) | 获取两个int值中较大的值 |
public static double ppow(double a,double b) | 返回a的b次幂的值 |
public static double random() | 返回值为double的随机值,范围[ 0.0,1.0 ] |
public class Test {public static void main(String[] args) {// 目标:了解Math类提供的常见方法System.out.println(Math.abs(12)); //12System.out.println(Math.abs(-12)); //12System.out.println(Math.ceil(4.0001)); //5.0System.out.println(Math.ceil(4.0)); //4.0System.out.println(Math.floor(4.999)); //4.0System.out.println(Math.floor(4.0)); //4.0System.out.println(Math.round(3.499)); //3System.out.println(Math.round(3.5001)); //3System.out.println(Math.max(10,20)); //20System.out.println(Math.min(10,20)); //10System.out.println(Math.pow(2,3)); //8.0System.out.println(Math.pow(3,2)); //9.0System.out.println(Math.random());}
}
System
- System代表程序所在的系统,也是一个工具类。
System类提供的常见方法
Runtime
- 代表程序所在的运行环境
- Runtime是一个单例类
Runtime类提供的常见方法
import java.io.IOException;public class Test {public static void main(String[] args) throws IOException, InterruptedException {// 目标:了解Runtime类提供的常见方法//返回与当前Java应用程序关联的运行时对象Runtime r = Runtime.getRuntime();//终止当前运行的虚拟机//r.exit(0);//返回Java虚拟机可用的处理器数System.out.println(r.availableProcessors());//返回Java虚拟机中的内存总量System.out.println(r.totalMemory() / 1024.0 / 1024.0 + "MB");//返回Java虚拟机中的可用内存System.out.println(r.freeMemory() / 1024.0 / 1024.0 + "MB");//启动某个程序,并返回代表该程序的对象Process p = r.exec("D:\\数据库\\Navicat Premium 16\\navicat.exe");Thread.sleep(5000); //让程序在这里暂停5s后继续往下走p.destroy(); //销毁!关闭程序}
}