一、Math类
Math类
【四舍五入】
static int round(float a)
static long round(double a)
二、Random类(随机数类)
random类
【作用】用于生成随机数
创建对象:Random random = new Random();
Random类方法
调用方式:Random对象.方法
【R>=0】nextInt()
【0=<R<=n】nextInt(int n)
【0=<R<1.0】nextFloat()
【0=<R<1.0】nextDouble()
【R为long类型的取值范围】nextLong()
三、System类
System类方法:
四、Runtime类
Runtime类特点:
Runtime类常用方法:
查看gc()方法清理内存的效果: